Renamed folder from example -> aggregate

This commit is contained in:
Pascal Scheiben
2025-09-18 10:23:40 +02:00
parent af4b60a0e3
commit 615d290773
10 changed files with 18 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
from src.service import load_config
from fastapi import FastAPI
import logging
from src.example import aggregate_router
from src.aggregate import aggregate_router
logger = logging.getLogger("uvicorn")
@@ -11,6 +11,7 @@ config = load_config()
app = FastAPI()
app.include_router(aggregate_router)
@app.get("/")
async def main():
return {"Hello": "World"}