1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-23 15:19:41 +02:00
* fix #1144

* fix type checks

* refactor test routes package

* fix #1208

* unify test routes into module
This commit is contained in:
Hayden 2022-05-07 20:08:04 -08:00 committed by GitHub
parent 07f6446526
commit 68f7efc177
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 189 additions and 148 deletions

View file

@ -0,0 +1,9 @@
from ._base import RoutesBase, v1
class Seeders(RoutesBase):
base = v1("/groups/seeders")
foods = f"{base}/foods"
units = f"{base}/units"
labels = f"{base}/labels"