mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-11 23:57:14 -07:00
* fix #1144 * fix type checks * refactor test routes package * fix #1208 * unify test routes into module
9 lines
183 B
Python
9 lines
183 B
Python
from ._base import RoutesBase, v1
|
|
|
|
|
|
class Seeders(RoutesBase):
|
|
base = v1("/groups/seeders")
|
|
|
|
foods = f"{base}/foods"
|
|
units = f"{base}/units"
|
|
labels = f"{base}/labels"
|