You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
286 B
13 lines
286 B
from fastapi import APIRouter
|
|
from core.settings import settings
|
|
from .login import router as login_router
|
|
from .user import router as user_router
|
|
router = APIRouter(
|
|
prefix=settings.api.v1.prefix,
|
|
)
|
|
router.include_router(
|
|
user_router
|
|
)
|
|
router.include_router(
|
|
login_router
|
|
)
|