This commit is contained in:
sebastian 2026-06-28 17:04:34 +02:00
parent 5a04bf2e91
commit 67772affc3

View File

@ -51,6 +51,3 @@ async def get_measurements(
limit: int = 100, limit: int = 100,
session: Session = Depends(get_session)): session: Session = Depends(get_session)):
return measurementService.get_measurements(session, station_ids, indoor, from_timestamp, to_timestamp, limit, resolution) return measurementService.get_measurements(session, station_ids, indoor, from_timestamp, to_timestamp, limit, resolution)
@app.get("/hello/{name}")
async def say_hello(name: str):
return {"message": f"Hello {name}"}