2023-04-19 06:11:28 +00:00
|
|
|
from .help import command_help
|
|
|
|
from .newroom import command_newroom
|
|
|
|
from .stats import command_stats
|
|
|
|
from .botinfo import command_botinfo
|
|
|
|
from .unknown import command_unknown
|
|
|
|
from .coin import command_coin
|
|
|
|
from .ignoreolder import command_ignoreolder
|
2023-04-24 08:48:59 +00:00
|
|
|
from .systemmessage import command_systemmessage
|
2023-04-28 10:01:27 +00:00
|
|
|
from .imagine import command_imagine
|
|
|
|
from .calculate import command_calculate
|
2023-05-01 06:11:43 +00:00
|
|
|
from .classify import command_classify
|
|
|
|
from .chat import command_chat
|
2023-04-19 06:11:28 +00:00
|
|
|
|
|
|
|
COMMANDS = {
|
|
|
|
"help": command_help,
|
|
|
|
"newroom": command_newroom,
|
|
|
|
"stats": command_stats,
|
|
|
|
"botinfo": command_botinfo,
|
|
|
|
"coin": command_coin,
|
|
|
|
"ignoreolder": command_ignoreolder,
|
2023-04-24 08:48:59 +00:00
|
|
|
"systemmessage": command_systemmessage,
|
2023-04-28 10:01:27 +00:00
|
|
|
"imagine": command_imagine,
|
|
|
|
"calculate": command_calculate,
|
2023-05-01 06:11:43 +00:00
|
|
|
"classify": command_classify,
|
|
|
|
"chat": command_chat,
|
2023-04-19 06:11:28 +00:00
|
|
|
None: command_unknown,
|
2023-04-23 13:26:46 +00:00
|
|
|
}
|