Introduces schemas for user management, token handling, and password hashing. Implements routes for user registration, login, token refresh, and user info retrieval. Sets up authentication dependencies and integrates the API router with the application.
7 lines
143 B
Python
7 lines
143 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.routes import auth
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(auth.router, tags=["auth"])
|