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