forked from
tangled.org/core
this repo has no description
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3// Lexicon schema: sh.tangled.string
4
5package tangled
6
7import (
8 lexutil "github.com/bluesky-social/indigo/lex/util"
9)
10
11const (
12 StringNSID = "sh.tangled.string"
13)
14
15func init() {
16 lexutil.RegisterType("sh.tangled.string", &String{})
17}
18
19type String struct {
20 LexiconTypeID string `json:"$type" cborgen:"$type,const=sh.tangled.string"`
21 Contents string `json:"contents" cborgen:"contents"`
22 CreatedAt string `json:"createdAt" cborgen:"createdAt"`
23 Description string `json:"description" cborgen:"description"`
24 Filename string `json:"filename" cborgen:"filename"`
25}