Monorepo for Tangled
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.string
6
7const (
8 StringNSID = "sh.tangled.string"
9)
10
11func init() {
12 // util.RegisterType("sh.tangled.string", &String{})
13} //
14// RECORDTYPE: String
15type String struct {
16 LexiconTypeID string `json:"$type,const=sh.tangled.string" cborgen:"$type,const=sh.tangled.string"`
17 Contents string `json:"contents" cborgen:"contents"`
18 CreatedAt string `json:"createdAt" cborgen:"createdAt"`
19 Description string `json:"description" cborgen:"description"`
20 Filename string `json:"filename" cborgen:"filename"`
21}