Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down