1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package bsky
4
5// schema: app.bsky.graph.follow
6
7import (
8 "github.com/bluesky-social/indigo/lex/util"
9)
10
11func init() {
12 util.RegisterType("app.bsky.graph.follow", &GraphFollow{})
13} //
14// RECORDTYPE: GraphFollow
15type GraphFollow struct {
16 LexiconTypeID string `json:"$type,const=app.bsky.graph.follow" cborgen:"$type,const=app.bsky.graph.follow"`
17 CreatedAt string `json:"createdAt" cborgen:"createdAt"`
18 Subject string `json:"subject" cborgen:"subject"`
19}