mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-12 08:07:14 -07:00
* fix #1144 * fix type checks * refactor test routes package * fix #1208 * unify test routes into module
13 lines
190 B
Python
13 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")
|