diff --git a/app/api.py b/app/api.py index 93729c5c..1e2f9620 100644 --- a/app/api.py +++ b/app/api.py @@ -130,6 +130,11 @@ async def create_price(price: schemas.PriceCreate, current_user: schemas.UserBas return db_price +@app.get("/status") +async def status_endpoint(): + return {"status": "running"} + + @app.get("/robots.txt", response_class=PlainTextResponse) def robots_txt(): return """User-agent: *\nDisallow: /"""