diff --git a/main.py b/main.py index eabb5a1..8cfdaf1 100644 --- a/main.py +++ b/main.py @@ -17,3 +17,7 @@ async def lifespan(app: FastAPI): app = FastAPI(lifespan=lifespan) app.include_router(router=api_router) + +@app.get('/ping') +async def ping(): + return 'Ok'