forked from tangled.org/core
this repo has no description
at master 1.1 kB view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package tangled 4 5// schema: sh.tangled.repo 6 7import ( 8 "github.com/bluesky-social/indigo/lex/util" 9) 10 11const ( 12 RepoNSID = "sh.tangled.repo" 13) 14 15func init() { 16 util.RegisterType("sh.tangled.repo", &Repo{}) 17} // 18// RECORDTYPE: Repo 19type Repo struct { 20 LexiconTypeID string `json:"$type,const=sh.tangled.repo" cborgen:"$type,const=sh.tangled.repo"` 21 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 22 Description *string `json:"description,omitempty" cborgen:"description,omitempty"` 23 // knot: knot where the repo was created 24 Knot string `json:"knot" cborgen:"knot"` 25 // labels: List of labels that this repo subscribes to 26 Labels []string `json:"labels,omitempty" cborgen:"labels,omitempty"` 27 // name: name of the repo 28 Name string `json:"name" cborgen:"name"` 29 // source: source of the repo 30 Source *string `json:"source,omitempty" cborgen:"source,omitempty"` 31 // spindle: CI runner to send jobs to and receive results from 32 Spindle *string `json:"spindle,omitempty" cborgen:"spindle,omitempty"` 33}