Implemented comprehensive authentication endpoints including user registration, login, token refresh, password change, and user info retrieval. Added extensive test cases for these endpoints to ensure functionality and error handling.
7 lines
159 B
Python
7 lines
159 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.routes import auth
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])
|