diff --git a/app/main.py b/app/main.py index 1750389..c7a7d24 100644 --- a/app/main.py +++ b/app/main.py @@ -78,6 +78,18 @@ def create_task(task: TaskCreate): except Exception as e: raise HTTPException(status_code=500, detail=str(e)) +@app.get("/about",response_class=plainTextResponse) +def about_backend(): + return "This is all backend" + +@app.get("/about",response_class=plainTextResponse) +def about_backend(): + return "This is all backend" + +@app.get("/about",response_class=PlainTextResponse) +def about_backend(): + return "This is all backend" + @app.get("/about",response_class=PlainTextResponse) def about_backend(): return "This is all backend"