package domain type RecipeRepository interface { CreateRecipe(recipe *Recipe) error GetRecipe(id int) (*Recipe, error) }