Update api.py

This commit is contained in:
bt3gl 2022-03-26 07:19:28 +00:00 committed by GitHub
parent 56aafcca64
commit 05fd597a7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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")