forked from
tangled.org/core
Monorepo for Tangled — https://tangled.org
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.repo.pull.status
6
7import (
8 "github.com/bluesky-social/indigo/lex/util"
9)
10
11const (
12 RepoPullStatusNSID = "sh.tangled.repo.pull.status"
13)
14
15func init() {
16 util.RegisterType("sh.tangled.repo.pull.status", &RepoPullStatus{})
17} //
18// RECORDTYPE: RepoPullStatus
19type RepoPullStatus struct {
20 LexiconTypeID string `json:"$type,const=sh.tangled.repo.pull.status" 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}