feat: ОК

This commit is contained in:
2026-03-11 21:51:04 +03:00
parent 51326f0fc2
commit f19c7856de
9 changed files with 238 additions and 16 deletions

5
app/main.py Normal file
View File

@@ -0,0 +1,5 @@
from fastapi import FastAPI
from app.routes.OK import router as OK_router
app = FastAPI()
app.include_router(OK_router)