mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-07 03:33:42 +00:00
9 lines
147 B
Python
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()
|