Skip to content

Commit 4b3758e

Browse files
committed
feat(api): Add package initialization files for v1 API modules
1 parent 213fcf8 commit 4b3758e

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

app/controller/api/dummy/__init__.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

app/controller/api/echo/__init__.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

app/controller/api/redis/__init__.py

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"""Dummy model API."""
2+
3+
from app.controller.api.v1.dummy.views import router
4+
5+
__all__ = ["router"]
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"""Echo API."""
2+
3+
from app.controller.api.v1.echo.views import router
4+
5+
__all__ = ["router"]
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"""Redis API."""
2+
3+
from app.controller.api.v1.redis.views import router
4+
5+
__all__ = ["router"]

0 commit comments

Comments
 (0)