fork of indigo with slightly nicer lexgen
at main 527 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package chat 4 5// schema: chat.bsky.actor.declaration 6 7import ( 8 "github.com/bluesky-social/indigo/lex/util" 9) 10 11func init() { 12 util.RegisterType("chat.bsky.actor.declaration", &ActorDeclaration{}) 13} // 14// RECORDTYPE: ActorDeclaration 15type ActorDeclaration struct { 16 LexiconTypeID string `json:"$type,const=chat.bsky.actor.declaration" cborgen:"$type,const=chat.bsky.actor.declaration"` 17 AllowIncoming string `json:"allowIncoming" cborgen:"allowIncoming"` 18}