17 lines
315 B
Python
17 lines
315 B
Python
from astrbot.core.star.register import (
|
||
register_star as register, # 注册插件(Star)
|
||
)
|
||
|
||
from astrbot.core.star import Context, Star
|
||
from astrbot.core.star.config import *
|
||
|
||
__all__ = [
|
||
"register",
|
||
"Context",
|
||
"Star",
|
||
"DEFAULT_CONFIG",
|
||
"VERSION",
|
||
"DB_PATH",
|
||
"AstrBotConfig",
|
||
]
|