17 lines
321 B
Python
17 lines
321 B
Python
from .client import MealieClient
|
|
from .food import FoodMixin
|
|
from .group import GroupMixin
|
|
from .mealplan import MealplanMixin
|
|
from .recipe import RecipeMixin
|
|
from .user import UserMixin
|
|
|
|
class MealieFetcher(
|
|
RecipeMixin,
|
|
UserMixin,
|
|
GroupMixin,
|
|
MealplanMixin,
|
|
FoodMixin,
|
|
MealieClient,
|
|
):
|
|
pass
|