diff options
Diffstat (limited to 'content/item.go')
-rw-r--r-- | content/item.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/item.go b/content/item.go index e96a34e..7b25b14 100644 --- a/content/item.go +++ b/content/item.go @@ -4,5 +4,6 @@ package content type Item struct { ID int `json:"id"` Slug string `json:"slug"` - Timestamp string `json:"timestamp"` + Timestamp int64 `json:"timestamp"` + Updated int64 `json:"updated"` } |