summaryrefslogtreecommitdiff
path: root/recipe.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-05-01 18:07:55 +0200
committerxengineering <me@xengineering.eu>2023-05-01 18:07:55 +0200
commit358c5e76d67477b26d841985649b9279d7633fc3 (patch)
treec463327722b29a58d3f69dfcd34c806297d4d70c /recipe.go
parentca3c6edebc835eadbaa5c1f432193ad7b036bf86 (diff)
downloadceres-358c5e76d67477b26d841985649b9279d7633fc3.tar
ceres-358c5e76d67477b26d841985649b9279d7633fc3.tar.zst
ceres-358c5e76d67477b26d841985649b9279d7633fc3.zip
Switch to tripel to describe ingredients
It is always the same: - amount float32 - unit string - type string This is good as a starting point. Later the types of ingredients might have to be tracked. In this a string as key is maybe not the best.
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")