1package models
2
3import "time"
4
5type Post struct {
6 Uri string `ch:"uri"`
7 Did string `ch:"did"`
8 Rkey string `ch:"rkey"`
9 CreatedAt time.Time `ch:"created_at"`
10 IndexedAt time.Time `ch:"indexed_at"`
11 RootUri string `ch:"root_uri"`
12 RootDid string `ch:"root_did"`
13 ParentUri string `ch:"parent_uri"`
14 ParentDid string `ch:"parent_did"`
15 QuoteUri string `ch:"quote_uri"`
16 QuoteDid string `ch:"quote_did"`
17 Lang string `ch:"lang"`
18 Text string `ch:"text"`
19}