basic feed fetcher
This commit is contained in:
parent
be1804c7d0
commit
9cea82005b
4 changed files with 85 additions and 9 deletions
|
|
@ -1,6 +1,9 @@
|
|||
package storage
|
||||
|
||||
import "fmt"
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
)
|
||||
|
||||
type ItemStatus int
|
||||
|
||||
|
|
@ -18,8 +21,8 @@ type Item struct {
|
|||
Description string
|
||||
Content string
|
||||
Author string
|
||||
Date int64
|
||||
DateUpdated int64
|
||||
Date *time.Time
|
||||
DateUpdated *time.Time
|
||||
Status ItemStatus
|
||||
Image string
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue