A vibe coded tangled fork which supports pijul.
at sl/spindle-adapters 31 lines 991 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3// Lexicon schema: sh.tangled.repo.artifact 4 5package tangled 6 7import ( 8 lexutil "github.com/bluesky-social/indigo/lex/util" 9) 10 11const ( 12 RepoArtifactNSID = "sh.tangled.repo.artifact" 13) 14 15func init() { 16 lexutil.RegisterType("sh.tangled.repo.artifact", &RepoArtifact{}) 17} 18 19type RepoArtifact struct { 20 LexiconTypeID string `json:"$type" cborgen:"$type,const=sh.tangled.repo.artifact"` 21 // artifact: the artifact 22 Artifact *lexutil.LexBlob `json:"artifact" cborgen:"artifact"` 23 // createdAt: time of creation of this artifact 24 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 25 // name: name of the artifact 26 Name string `json:"name" cborgen:"name"` 27 // repo: repo that this artifact is being uploaded to 28 Repo string `json:"repo" cborgen:"repo"` 29 // tag: hash of the tag object that this artifact is attached to (only annotated tags are supported) 30 Tag lexutil.LexBytes `json:"tag,omitempty" cborgen:"tag,omitempty"` 31}