package
Version:
v0.0.1-alpha-1
Opens a new window with list of versions in this module.
Published: Apr 5, 2022
License: BSD-3-Clause
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type NewRecipe struct {
Name string `json:"name"`
}
type Recipe struct {
ID string `json:"id"`
Name string `json:"name"`
Planned bool `json:"planned"`
}
type Result struct {
Status Status `json:"status"`
}
const (
StatusSuccess Status = "Success"
StatusError Status = "Error"
StatusNotFound Status = "NotFound"
)
type UpdateRecipe struct {
ID string `json:"id"`
Name string `json:"name"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.