Бот + прокси

This commit is contained in:
2026-04-30 16:34:57 +03:00
parent ddec6094c2
commit 5dc9c8f0d1
11 changed files with 129 additions and 19 deletions

18
main.py Normal file
View File

@@ -0,0 +1,18 @@
import asyncio
import logging
import sys
from tracker.commands import end_workday
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s %(name)s:%(lineno)d %(levelname)s %(message)s',
handlers=[
logging.FileHandler('app.log', encoding='utf-8'),
logging.StreamHandler(sys.stdout)
]
)
if __name__ == "__main__":
asyncio.run(end_workday())