Skip to content

Commit

Permalink
Port aggregation API
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Jan 10, 2024
1 parent 118b893 commit ea34c01
Show file tree
Hide file tree
Showing 6 changed files with 516 additions and 108 deletions.
2 changes: 2 additions & 0 deletions api/fastapi/dataapi/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from fastapi import FastAPI

from .routers import measurements
from .routers import aggregation

from .config import settings

Expand All @@ -10,6 +11,7 @@

app = FastAPI()
app.include_router(measurements.router, prefix="/api")
app.include_router(aggregation.router, prefix="/api")


@app.get("/")
Expand Down
Loading

0 comments on commit ea34c01

Please sign in to comment.