forked from tildetown/bbj2
32 lines
616 B
Go
32 lines
616 B
Go
package db
|
|
|
|
import "time"
|
|
|
|
type User struct {
|
|
ID string
|
|
Username string
|
|
Hash string
|
|
}
|
|
|
|
type Thread struct {
|
|
ID string `json:"thread_id"`
|
|
Author string
|
|
Title string
|
|
LastMod time.Time `json:"last_mod"`
|
|
Created time.Time
|
|
ReplyCount int `json:"reply_count"`
|
|
Pinned int // TODO bool
|
|
LastAuthor string `json:"last_author"`
|
|
Messages []Message
|
|
}
|
|
|
|
type Message struct {
|
|
ThreadID string `json:"thread_id"`
|
|
PostID string `json:"post_id"`
|
|
Author string
|
|
Created time.Time
|
|
Edited int // TODO bool
|
|
Body string
|
|
SendRaw int `json:"send_raw"` // TODO bool
|
|
}
|