Reworked setup.py, now you can run cmd_chat directly. Reworked sanic http webserver to make it work. Update readme, etc...

This commit is contained in:
mirai
2023-11-27 14:30:01 +03:00
parent c5fa982f65
commit 316a0e3e1e
7 changed files with 76 additions and 67 deletions
+4 -3
View File
@@ -1,7 +1,8 @@
import asyncio
import cmd_chat
async def main():
await cmd_chat.run()
if __name__ == '__main__':
asyncio.run(
cmd_chat.run()
)
asyncio.run(main())