diff options
Diffstat (limited to 'model/recipe.go')
-rw-r--r-- | model/recipe.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/model/recipe.go b/model/recipe.go index db3af70..acd9a3b 100644 --- a/model/recipe.go +++ b/model/recipe.go @@ -5,7 +5,6 @@ import ( "encoding/json" "errors" "fmt" - "time" ) type Recipe struct { @@ -23,11 +22,6 @@ func (r Recipe) String() string { return string(b) } -func (r *Recipe) Touch() { - now := time.Now().Unix() - r.LastChanged = fmt.Sprint(now) -} - func (r *Recipe) Create() error { query := `INSERT INTO recipes (title, portions, url, notes, created, last_changed) |