9 lines
230 B
Python
9 lines
230 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.endpoints import todos
|
|
from app.core.config import settings
|
|
|
|
api_router = APIRouter(prefix=settings.API_V1_STR)
|
|
|
|
api_router.include_router(todos.router, prefix="/todos", tags=["todos"])
|