diff options
Diffstat (limited to 'recipe.go')
-rw-r--r-- | recipe.go | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -15,13 +15,16 @@ type recipe struct { Url string Steps []struct { Text string - Ingredients []struct { - Type string - Amount any - } + Ingredients []ingredient } } +type ingredient struct { + Amount float32 + Unit string + Type string +} + func getRecipeText(id string) ([]byte, error) { var b []byte textpath := filepath.Join(config.Data, "recipes", id, "text") |