blob: 167f69018e1531fa010a4982bc3199c2a91c848c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package main
import (
"encoding/json"
"path/filepath"
"io/ioutil"
)
type recipe struct {
Title string
Portions int
Url string
Steps []struct {
Text string
Ingredients []struct {
Type string
Amount any
}
}
}
func getRecipe(id string) (recipe, error) {
r := recipe{}
textpath := filepath.Join(config.Data, "recipes", id, "text")
data, err := ioutil.ReadFile(textpath)
if err != nil {
return r, err
}
err = json.Unmarshal(data, &r)
if err != nil {
return r, err
}
return r, nil
}
|