Files
beaver_project/app-instance/backend/nanobot/__main__.py
2026-03-13 16:40:08 +08:00

9 lines
147 B
Python

"""
Entry point for running nanobot as a module: python -m nanobot
"""
from nanobot.cli.commands import app
if __name__ == "__main__":
app()