Files

9 lines
147 B
Python
Raw Permalink Normal View History

2026-03-14 15:44:48 +08:00
"""
Entry point for running nanobot as a module: python -m nanobot
"""
from nanobot.cli.commands import app
if __name__ == "__main__":
app()