from fastapi import APIRouter from .login import router as login_router from .register import router as register_router from .new import router as new_router from .current_user import router as current_user_router, oauth2_scheme from .lost_password import router as lost_password_router from .confirm import router as confirm_router router = APIRouter() router.include_router(login_router) router.include_router(register_router) router.include_router(new_router) router.include_router(current_user_router) router.include_router(lost_password_router) router.include_router(confirm_router)