mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-19 02:12:46 +08:00
- Implement 'astrbot uninstall' to remove systemd service and data files - Add '--log-level' option to 'astrbot run' (default: INFO) - Pass log level config to core logger via env var
8 lines
199 B
Python
8 lines
199 B
Python
from .cmd_conf import conf
|
|
from .cmd_init import init
|
|
from .cmd_plug import plug
|
|
from .cmd_run import run
|
|
from .cmd_uninstall import uninstall
|
|
|
|
__all__ = ["conf", "init", "plug", "run", "uninstall"]
|