13 lines
242 B
Go
13 lines
242 B
Go
package recipes
|
|
|
|
// represents a recipe
|
|
type Recipe struct {
|
|
Name string `json:"name"`
|
|
Ingredients []Ingredient `json:"ingredients"`
|
|
}
|
|
|
|
// represents individual ingredients
|
|
type Ingredient struct {
|
|
Name string `json:"name"`
|
|
}
|