1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-22 14:49:40 +02:00
mealie/tests/utils/routes/routes_recipes.py

14 lines
190 B
Python
Raw Permalink Normal View History

from ._base import RoutesBase, v1
class Foods(RoutesBase):
base = v1("/foods")
class Units(RoutesBase):
base = v1("/units")
class Recipe(RoutesBase):
base = v1("/recipes")