2024-06-01 12:34:20 +00:00

8 lines
127 B
Python

from fastapi import APIRouter
from . import auth
router = APIRouter(prefix='/auth')
router.include_router(auth.auth_router)