diff options
Diffstat (limited to 'model/recipe.go')
-rw-r--r-- | model/recipe.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/model/recipe.go b/model/recipe.go index ce16ee4..b9830e6 100644 --- a/model/recipe.go +++ b/model/recipe.go @@ -2,6 +2,7 @@ package model import ( "database/sql" + "encoding/json" "errors" "fmt" "time" @@ -17,6 +18,11 @@ type Recipe struct { LastChanged string `json:"last_changed"` } +func (r Recipe) String() string { + b, _ := json.MarshalIndent(r, "", " ") + return string(b) +} + func (r *Recipe) Touch() { now := time.Now().Unix() r.LastChanged = fmt.Sprint(now) |