diff --git a/src/main.py b/src/main.py index 28bbfdb..530804c 100644 --- a/src/main.py +++ b/src/main.py @@ -19,6 +19,11 @@ app = FastAPI() +@app.get("/oh-my-god-im-gonna-error") +async def error(): + return {"message": 1 / 0} + + @app.post("/analytics/") async def store_data(request: Request, token: dict = Depends(verify_jwt)): try: