Monorepo for Tangled
at push-pkuzytwlwptp 20 lines 592 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package tangled 4 5// schema: sh.tangled.repo.issue.state 6 7const ( 8 RepoIssueStateNSID = "sh.tangled.repo.issue.state" 9) 10 11func init() { 12 // util.RegisterType("sh.tangled.repo.issue.state", &RepoIssueState{}) 13} // 14// RECORDTYPE: RepoIssueState 15type RepoIssueState struct { 16 LexiconTypeID string `json:"$type,const=sh.tangled.repo.issue.state" cborgen:"$type,const=sh.tangled.repo.issue.state"` 17 Issue string `json:"issue" cborgen:"issue"` 18 // state: state of the issue 19 State string `json:"state" cborgen:"state"` 20}