this repo has no description
at main 265 B view raw
1package models 2 3import "time" 4 5type Follow 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 Subject string `ch:"subject"` 12}