this repo has no description
at sl/spindle-adapters 23 lines 564 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3// Lexicon schema: sh.tangled.graph.follow 4 5package tangled 6 7import ( 8 lexutil "github.com/bluesky-social/indigo/lex/util" 9) 10 11const ( 12 GraphFollowNSID = "sh.tangled.graph.follow" 13) 14 15func init() { 16 lexutil.RegisterType("sh.tangled.graph.follow", &GraphFollow{}) 17} 18 19type GraphFollow struct { 20 LexiconTypeID string `json:"$type" cborgen:"$type,const=sh.tangled.graph.follow"` 21 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 22 Subject string `json:"subject" cborgen:"subject"` 23}