[WIP] music platform user data scraper
teal-fm atproto
at main 571 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package bsky 4 5// schema: app.bsky.graph.block 6 7import ( 8 "github.com/bluesky-social/indigo/lex/util" 9) 10 11func init() { 12 util.RegisterType("app.bsky.graph.block", &GraphBlock{}) 13} // 14// RECORDTYPE: GraphBlock 15type GraphBlock struct { 16 LexiconTypeID string `json:"$type,const=app.bsky.graph.block" cborgen:"$type,const=app.bsky.graph.block"` 17 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 18 // subject: DID of the account to be blocked. 19 Subject string `json:"subject" cborgen:"subject"` 20}