mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-09 11:55:18 -05:00
* fix #1144 * fix type checks * refactor test routes package * fix #1208 * unify test routes into module
This commit is contained in:
13
tests/utils/routes/routes_recipes.py
Normal file
13
tests/utils/routes/routes_recipes.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from ._base import RoutesBase, v1
|
||||
|
||||
|
||||
class Foods(RoutesBase):
|
||||
base = v1("/foods")
|
||||
|
||||
|
||||
class Units(RoutesBase):
|
||||
base = v1("/units")
|
||||
|
||||
|
||||
class Recipe(RoutesBase):
|
||||
base = v1("/recipes")
|
||||
Reference in New Issue
Block a user