summaryrefslogtreecommitdiff
path: root/recipe.go
diff options
context:
space:
mode:
Diffstat (limited to 'recipe.go')
-rw-r--r--recipe.go11
1 files changed, 7 insertions, 4 deletions
diff --git a/recipe.go b/recipe.go
index b28aebb..b80286a 100644
--- a/recipe.go
+++ b/recipe.go
@@ -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")