mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-27 04:35:12 -05:00
9 lines
169 B
Python
9 lines
169 B
Python
from fastapi import APIRouter
|
|
|
|
from . import auth
|
|
|
|
router = APIRouter(prefix="/auth")
|
|
|
|
router.include_router(auth.public_router)
|
|
router.include_router(auth.user_router)
|