mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-16 01:40:15 +08:00
12 lines
142 B
Python
12 lines
142 B
Python
"""`python -m astrbot_sdk` 的 CLI 入口。"""
|
|
|
|
from .cli import cli
|
|
|
|
|
|
def main() -> None:
|
|
cli()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|