Add service model, route, and logic

This commit is contained in:
Hannah dagemark 2026-08-09 15:18:43 +02:00
commit e72ec07c45
4 changed files with 108 additions and 1 deletions

View file

@ -4,7 +4,7 @@ from fastapi import FastAPI
from app.config import settings
from app.database import create_database
from app.routers import project_route
from app.routers import project_route, service_route
@asynccontextmanager
@ -23,3 +23,4 @@ app = FastAPI(
app.include_router(project_route.router)
app.include_router(service_route.router)