diff --git a/main.py b/main.py index bdc931b..1c25965 100644 --- a/main.py +++ b/main.py @@ -8,3 +8,7 @@ app = FastAPI() app.include_router(tasks_router) app.include_router(projects_router) +"""ping pong :)""" +@app.get("/ping") +def ping(): + return {"message": "pong"} \ No newline at end of file