diff --git a/api.py b/api.py index 436f6fe..c50c97d 100644 --- a/api.py +++ b/api.py @@ -17,7 +17,9 @@ def flask_main(): return f"Hello, {escape(name)} from Flask!" """ -app = FastAPI() +app = FastAPI(title="Curie-API", + description="API for accessing Curie-Web.", + version="0.1",) @app.get("/v1")