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