From 05fd597a7fefba381e2f27fe71788f69da36071e Mon Sep 17 00:00:00 2001 From: bt3gl <1130416+bt3gl@users.noreply.github.com> Date: Sat, 26 Mar 2022 07:19:28 +0000 Subject: [PATCH] Update api.py --- fastapi-location-app/api/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi-location-app/api/api.py b/fastapi-location-app/api/api.py index 6702af7..189f715 100644 --- a/fastapi-location-app/api/api.py +++ b/fastapi-location-app/api/api.py @@ -8,7 +8,7 @@ app = FastAPI() @app.get("/", tags=["Root"]) async def read_root() -> dict: return { - "message": "$CHOICES Timezone API ⏳✨. Try /docs to learn about this API" + "message": "Location API 🗺✨. Try /docs to learn about this API" } app.include_router(LocationRouter, prefix="/tzone")