mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-18 10:00:40 +08:00
- Updated the VitePress configuration to include links to CLI commands in both English and Chinese. - Enhanced the AstrBot deployment documentation with instructions for installing it as a system service. - Created comprehensive CLI commands documentation covering initialization, service management, configuration, and plugin management. - Added tests for CLI command aliases and service functionalities to ensure proper command registration and behavior. - Implemented service log management features, including enabling application logging and controlling log visibility.
12 lines
309 B
Python
12 lines
309 B
Python
from .cmd_conf import conf as config
|
|
from .cmd_init import init
|
|
from .cmd_password import password
|
|
from .cmd_plug import plug as plugin
|
|
from .cmd_run import run
|
|
from .cmd_service import service
|
|
|
|
conf = config
|
|
plug = plugin
|
|
|
|
__all__ = ["config", "conf", "init", "password", "plugin", "plug", "run", "service"]
|