mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-15 17:30:13 +08:00
importlib.resources.files('astrbot')/dashboard/dist needs to exist
in the package dir for bundled dashboard detection to work in dev.
10 lines
260 B
Python
10 lines
260 B
Python
from .cmd_bk import bk
|
|
from .cmd_conf import conf
|
|
from .cmd_init import init
|
|
from .cmd_plug import plug
|
|
from .cmd_run import run
|
|
from .cmd_tui import tui
|
|
from .cmd_uninstall import uninstall
|
|
|
|
__all__ = ["bk", "conf", "init", "plug", "run", "tui", "uninstall"]
|