diff --git a/server/app.py b/server/app.py index f8d4102..8ee0e94 100644 --- a/server/app.py +++ b/server/app.py @@ -55,6 +55,10 @@ async def redoc_html(): title=fast_app.title + ' - ReDoc', # redoc_js_url='/static/redoc.standalone.js', ) + + @fast_app.get(f'/ping', include_in_schema=False) + async def ping(): + return 'pong' return fast_app