feat: Addition of authentication and user management systems
This commit is contained in:
11
app/api/v1/endpoints/__init__.py
Normal file
11
app/api/v1/endpoints/__init__.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
from .user import router as user_router
|
||||
from .auth import router as auth_router
|
||||
|
||||
router.include_router(user_router, prefix="/users")
|
||||
router.include_router(auth_router, prefix="/auth")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user