this repo has no description
at sl/spindle-adapters 24 lines 609 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3// Lexicon schema: sh.tangled.repo.pull.status 4 5package tangled 6 7import ( 8 lexutil "github.com/bluesky-social/indigo/lex/util" 9) 10 11const ( 12 RepoPullStatusNSID = "sh.tangled.repo.pull.status" 13) 14 15func init() { 16 lexutil.RegisterType("sh.tangled.repo.pull.status", &RepoPullStatus{}) 17} 18 19type RepoPullStatus struct { 20 LexiconTypeID string `json:"$type" cborgen:"$type,const=sh.tangled.repo.pull.status"` 21 Pull string `json:"pull" cborgen:"pull"` 22 // status: status of the pull request 23 Status string `json:"status" cborgen:"status"` 24}