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.
20 lines
517 B
20 lines
517 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"`
|
|
}
|
|
|
|
// IsChangeObject is an interface implementation to identify it as a valid
|
|
// ChangeObject in GQL.
|
|
func (*Post) IsChangeObject() {
|
|
panic("this method is a dummy, and so is its caller")
|
|
}
|