rewrite: Analytics client-server model.

This commit is contained in:
2022-11-18 18:53:02 +02:00
parent b471e78a75
commit fe51a8d150
11 changed files with 559 additions and 11 deletions

11
run_analytics.py Executable file
View File

@@ -0,0 +1,11 @@
import sys
import os
import asyncio
sys.path.insert(0, os.path.join(os.getcwd(), "bot"))
from bot.analytics.server import main
if __name__ == '__main__':
asyncio.run(main())