An implementation of the ATProto statusphere example app but in Go
at e136161adfeb153d3122f26dde256333114252e2 15 lines 259 B view raw
1package statusphere 2 3type Status struct { 4 URI string 5 Did string 6 Status string 7 CreatedAt int64 8 IndexedAt int64 9} 10 11type CreateRecordResp struct { 12 URI string `json:"uri"` 13 ErrStr string `json:"error"` 14 Message string `json:"message"` 15}