versione 1.0

This commit is contained in:
2026-05-23 22:50:13 +02:00
parent f8e6daa084
commit 57367b75c8
48 changed files with 1073 additions and 433 deletions

View File

@@ -1,5 +1,6 @@
from fastapi import FastAPI
from app.api.booking import router as booking_router
from app.api.health import router as health_router
from app.config import settings
from app.db.init_db import init_db
@@ -9,3 +10,4 @@ init_db()
app = FastAPI(title=settings.app_name)
app.include_router(health_router)
app.include_router(booking_router)