this repo has no description
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package bild
4
5// schema: sh.bild.publicKey
6
7import (
8 "github.com/bluesky-social/indigo/lex/util"
9)
10
11func init() {
12 util.RegisterType("sh.bild.publicKey", &PublicKey{})
13} //
14// RECORDTYPE: PublicKey
15type PublicKey struct {
16 LexiconTypeID string `json:"$type,const=sh.bild.publicKey" cborgen:"$type,const=sh.bild.publicKey"`
17 // created: key upload timestamp
18 Created string `json:"created" cborgen:"created"`
19 // key: public key contents
20 Key string `json:"key" cborgen:"key"`
21 // name: human-readable name for this key
22 Name string `json:"name" cborgen:"name"`
23}