diff --git a/main.py b/main.py index 0423ea7..f94b041 100644 --- a/main.py +++ b/main.py @@ -51,6 +51,3 @@ async def get_measurements( limit: int = 100, session: Session = Depends(get_session)): 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}"}