Coverage for opt/mealie/lib/python3.12/site-packages/mealie/routes/recipe/__init__.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.10.6, created at 2025-11-25 15:48 +0000

1from fastapi import APIRouter 1a

2 

3from . import bulk_actions, comments, exports, recipe_crud_routes, shared_routes, timeline_events 1a

4 

5prefix = "/recipes" 1a

6 

7router = APIRouter() 1a

8 

9router.include_router(exports.router, tags=["Recipe: Exports"]) 1a

10router.include_router(recipe_crud_routes.router, tags=["Recipe: CRUD"]) 1a

11router.include_router(comments.router, prefix=prefix, tags=["Recipe: Comments"]) 1a

12router.include_router(bulk_actions.router, prefix=prefix, tags=["Recipe: Bulk Actions"]) 1a

13router.include_router(shared_routes.router, prefix=prefix, tags=["Recipe: Shared"]) 1a

14router.include_router(timeline_events.router, prefix=prefix, tags=["Recipe: Timeline"]) 1a