feat: аналитика

This commit is contained in:
Artem Tsyrulnikov
2025-11-21 00:54:11 +03:00
parent 969ac2c93c
commit a60daddcf1
14 changed files with 566 additions and 21 deletions

View File

@@ -53,12 +53,12 @@ app = FastAPI(lifespan=lifespan, version=settings.logger.APP_VERSION)
app.add_middleware(
CORSMiddleware,
allow_origins=[
"https://app.tgexchange.ru",
"http://app.tgexchange.ru",
'https://app.tgexchange.ru',
'http://app.tgexchange.ru',
],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
allow_methods=['*'],
allow_headers=['*'],
)
app.include_router(api_router)