8 lines
127 B
Python
8 lines
127 B
Python
|
|
from fastapi import APIRouter
|
|
from . import auth
|
|
|
|
router = APIRouter(prefix='/auth')
|
|
|
|
router.include_router(auth.auth_router)
|