diff --git a/src/ohmyapi/core/templates/app/routes.py.j2 b/src/ohmyapi/core/templates/app/routes.py.j2 index 1e4d792..a5a4d4f 100644 --- a/src/ohmyapi/core/templates/app/routes.py.j2 +++ b/src/ohmyapi/core/templates/app/routes.py.j2 @@ -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("/")