diff options
Diffstat (limited to 'model/recipes.go')
-rw-r--r-- | model/recipes.go | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/model/recipes.go b/model/recipes.go index bdd1cc1..7604fe2 100644 --- a/model/recipes.go +++ b/model/recipes.go @@ -5,7 +5,7 @@ import ( ) type RecipesElement struct { - Id int64 + Id int64 // TODO change to string Title string } @@ -35,3 +35,16 @@ func (r *Recipes) Read() error { return nil } + +func RecipesTestData() Recipes { + return []RecipesElement{ + { + Id: 1, + Title: "Pancakes", + }, + { + Id: 2, + Title: "Burger", + }, + } +} |