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.
14 lines
329 B
14 lines
329 B
package models
|
|
|
|
import "time"
|
|
|
|
// A Post is a part of a log file.
|
|
type Post struct {
|
|
ID string `bson:"_id"`
|
|
LogID string `bson:"logId"`
|
|
Time time.Time `bson:"time"`
|
|
Kind string `bson:"kind"`
|
|
Nick string `bson:"nick"`
|
|
Text string `bson:"text"`
|
|
Position int `bson:"position"`
|
|
}
|