More little changes.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-08-23 21:51:26 -04:00
parent a668f02b52
commit 29f53bfd4d
3 changed files with 3 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ from fastapi import FastAPI
from backend import config
from backend.logging import setup_logging
from backend.models import create_db_and_tables
from backend.routers import users
ENVIRONMENT = config("ENVIRONMENT", default="development")
@@ -26,9 +27,10 @@ async def lifespan(app: FastAPI):
app_configs["lifespan"] = lifespan
app = FastAPI(**app_configs)
app.include_router(users.router)
setup_logging(app)