this repo has no description
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"` 12 RootDid string `ch:"root_did"` 13 ParentUri string `ch:"reply"` 14 ParentDid string `ch:"reply_did"` 15 QuoteUri string `ch:"quote_uri"` 16 QuoteDid string `ch:"quote_did"` 17}