mealie/tests/utils/routes/routes_recipes.py
Hayden 68f7efc177
fix #1144 (#1207)
* fix #1144

* fix type checks

* refactor test routes package

* fix #1208

* unify test routes into module
2022-05-07 20:08:04 -08:00

14 lines
190 B
Python

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