mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-08 11:25:17 -05:00
10 lines
209 B
Python
10 lines
209 B
Python
from fastapi import APIRouter
|
|
|
|
from . import auth, groups, users
|
|
|
|
router = APIRouter(prefix="/api")
|
|
|
|
router.include_router(auth.router)
|
|
router.include_router(users.router)
|
|
router.include_router(groups.router)
|