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,10 +0,0 @@
# contains the router for the example endpoint
from fastapi import APIRouter
from .schema import ExampleSchema
router = APIRouter(tags=["example"])
@router.get("/example")
async def example_endpoint() -> ExampleSchema:
return ExampleSchema(example_field="foo", another_field=42)