learning_go/go-code-samples/go-rest-demo/pkg/recipes/models.go
2025-12-20 10:21:45 +03:00

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"`
}