mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-08-31 00:03:01 +03:00
9 lines
146 B
Python
9 lines
146 B
Python
"""
|
|
Entry point for running nanobot as a module: python -m nanobot
|
|
"""
|
|
|
|
from nanobot.cli.entry import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|