feat: auth & admin
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
"""Native REST API, version 1. Aggregates feature routers under ``/api/v1``."""
|
||||
|
||||
from fastapi import APIRouter
|
||||
|
||||
from app.api.v1.admin import router as admin_router
|
||||
from app.api.v1.auth import router as auth_router
|
||||
from app.api.v1.users import router as users_router
|
||||
|
||||
api_v1_router = APIRouter(prefix="/api/v1")
|
||||
api_v1_router.include_router(auth_router)
|
||||
api_v1_router.include_router(users_router)
|
||||
api_v1_router.include_router(admin_router)
|
||||
|
||||
__all__ = ["api_v1_router"]
|
||||
Reference in New Issue
Block a user