🩹 Add missing quotes
This commit is contained in:
parent
d67ae5d3f5
commit
f2f6beb770
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ from . import models
|
||||||
# Expose your app's routes via `router = fastapi.APIRouter`.
|
# Expose your app's routes via `router = fastapi.APIRouter`.
|
||||||
# Use prefixes wisely to avoid cross-app namespace-collisions.
|
# Use prefixes wisely to avoid cross-app namespace-collisions.
|
||||||
# Tags improve the UX of the OpenAPI docs at /docs.
|
# Tags improve the UX of the OpenAPI docs at /docs.
|
||||||
router = APIRouter(prefix="/{{ app_name }}", tags=[{{ app_name }}])
|
router = APIRouter(prefix="/{{ app_name }}", tags=['{{ app_name }}'])
|
||||||
|
|
||||||
|
|
||||||
@router.get("/")
|
@router.get("/")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue