This commit introduces a suite of tests for user models, schemas, CRUD operations, and authentication services. It also adds utilities for in-memory database setup to support these tests and updates environment settings for consistency.
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"])
|