this repo has no description
at main 300 B view raw
1package models 2 3import "time" 4 5type Record struct { 6 Did string `ch:"did"` 7 Rkey string `ch:"rkey"` 8 Collection string `ch:"collection"` 9 Cid string `ch:"cid"` 10 Seq string `ch:"seq"` 11 Raw string `ch:"raw"` 12 CreatedAt time.Time `ch:"created_at"` 13}