package post import ( "time" "gitlab.com/alexkavon/newsstand/src/user" ) type Post struct { Title string `json:"title"` Body string `json:"body"` User user.User `json:"user"` Created time.Time `json:"created"` Updated time.Time `json:"updated"` }