🩹 Add missing quotes

This commit is contained in:
Brian Wiborg 2025-09-27 22:56:20 +02:00
parent d67ae5d3f5
commit f2f6beb770
No known key found for this signature in database

View file

@ -5,7 +5,7 @@ from . import models
# Expose your app's routes via `router = fastapi.APIRouter`.
# Use prefixes wisely to avoid cross-app namespace-collisions.
# 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("/")