Discover books, shows, and movies at your level. Track your progress by filling your Shelf with what you find, and share with other language learners. *No dusting required. shlf.space
at master 19 lines 518 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3// Lexicon schema: space.shlf.actor.profile 4 5package shlf 6 7import ( 8 lexutil "github.com/bluesky-social/indigo/lex/util" 9) 10 11func init() { 12 lexutil.RegisterType("space.shlf.actor.profile", &ActorProfile{}) 13} 14 15type ActorProfile struct { 16 LexiconTypeID string `json:"$type" cborgen:"$type,const=space.shlf.actor.profile"` 17 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 18 DisplayName string `json:"displayName" cborgen:"displayName"` 19}