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