Initial commit

This commit is contained in:
WorldObservationLog
2024-05-04 15:58:59 +08:00
commit 6d36521005
36 changed files with 4039 additions and 0 deletions

12
main.py Normal file
View File

@@ -0,0 +1,12 @@
import asyncio
from src.cmd import NewInteractiveShell
if __name__ == '__main__':
loop = asyncio.get_event_loop()
cmd = NewInteractiveShell(loop)
try:
loop.run_until_complete(cmd.start())
except KeyboardInterrupt:
loop.stop()