5255388e2d
* refactor: move builtin stars to astrbot package fixes: #4202 * chore: ruff format * chore: remove print
32 lines
756 B
Python
32 lines
756 B
Python
# Commands module
|
|
|
|
from .admin import AdminCommands
|
|
from .alter_cmd import AlterCmdCommands
|
|
from .conversation import ConversationCommands
|
|
from .help import HelpCommand
|
|
from .llm import LLMCommands
|
|
from .persona import PersonaCommands
|
|
from .plugin import PluginCommands
|
|
from .provider import ProviderCommands
|
|
from .setunset import SetUnsetCommands
|
|
from .sid import SIDCommand
|
|
from .t2i import T2ICommand
|
|
from .tool import ToolCommands
|
|
from .tts import TTSCommand
|
|
|
|
__all__ = [
|
|
"AdminCommands",
|
|
"AlterCmdCommands",
|
|
"ConversationCommands",
|
|
"HelpCommand",
|
|
"LLMCommands",
|
|
"PersonaCommands",
|
|
"PluginCommands",
|
|
"ProviderCommands",
|
|
"SIDCommand",
|
|
"SetUnsetCommands",
|
|
"T2ICommand",
|
|
"TTSCommand",
|
|
"ToolCommands",
|
|
]
|