mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-01-04 18:19:51 -08:00
14 lines
190 B
Python
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")
|