14 lines
305 B
Python
14 lines
305 B
Python
from .recipe import V60, ESPRESSO
|
|
|
|
class RecipeManager:
|
|
def __init__(self):
|
|
self.recipes = [
|
|
V60,
|
|
ESPRESSO
|
|
]
|
|
|
|
def add_recipe(self, recipe):
|
|
self.recipes.append(recipe)
|
|
|
|
def remove_recipe(self, recipe):
|
|
self.recipes.remove(recipe) |