Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Ingredient ¶
Ingredient is a struct that represents a single ingredient
type ManyIngredients ¶
type ManyIngredients struct {
Ingredients []Ingredient
}
ManyIngredients is a struct that represents multiple ingredients
type ManyNotes ¶
type ManyNotes struct {
Notes []Note
}
ManyNotes is a struct that represents multiple notes
type ManyRecipes ¶
type ManyRecipes struct {
Recipes []Recipe
}
ManyRecipes is a struct that represents multiple recipes
type ManyRoles ¶
type ManyRoles struct {
Roles []Role
}
ManyRoles is a struct that represents multiple roles
type ManyTags ¶
type ManyTags struct {
Tags []Tag
}
ManyTags is a struct that represents multiple tags
type ManyUsers ¶
type ManyUsers struct {
Users []User
}
ManyUsers is a struct that represents multiple users
type Recipe ¶
type Recipe struct { ID string Name string URL string Domain string Directions string PrepTime int CookTime int TotalServings int HasBeenTried bool CreatedBy User Ingredients []Ingredient Tags []Tag RatedBy []User FavoritedBy []User RelatedRecipes []Recipe Notes []Note }
Recipe is a struct that represents a single recipe.
Click to show internal directories.
Click to hide internal directories.