You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
221 B
12 lines
221 B
package models
|
|
|
|
import "time"
|
|
|
|
// A Post is a post.
|
|
type Post struct {
|
|
ID string `json:"id"`
|
|
Time time.Time `json:"time"`
|
|
Kind string `json:"kind"`
|
|
Nick string `json:"nick"`
|
|
Text string `json:"text"`
|
|
}
|