This commit is contained in:
2024-03-04 07:12:29 +03:00
commit 4df5770e76
36 changed files with 2369 additions and 0 deletions

7
tg_bot/app.py Normal file
View File

@@ -0,0 +1,7 @@
from fastapi import FastAPI
def create_app() -> FastAPI:
app = FastAPI()
return app