diff options
| -rw-r--r-- | api.py | 4 | 
1 files changed, 3 insertions, 1 deletions
| @@ -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") | 
