примитивный ws эндпоинт

This commit is contained in:
Егор Кандрушин 2026-04-01 23:32:13 +03:00
parent 9735069034
commit 04bb17190e
5 changed files with 244 additions and 1 deletions

8
src/main.py Normal file
View file

@ -0,0 +1,8 @@
from fastapi import FastAPI
from src.api.external import router as ws_router
app = FastAPI()
app.include_router(ws_router)