A vibe coded tangled fork which supports pijul.
at 1edcd7707b74263a60a244da3cbb982d5016a0ae 25 lines 673 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3// Lexicon schema: sh.tangled.repo.collaborator 4 5package tangled 6 7import ( 8 lexutil "github.com/bluesky-social/indigo/lex/util" 9) 10 11const ( 12 RepoCollaboratorNSID = "sh.tangled.repo.collaborator" 13) 14 15func init() { 16 lexutil.RegisterType("sh.tangled.repo.collaborator", &RepoCollaborator{}) 17} 18 19type RepoCollaborator struct { 20 LexiconTypeID string `json:"$type" cborgen:"$type,const=sh.tangled.repo.collaborator"` 21 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 22 // repo: repo to add this user to 23 Repo string `json:"repo" cborgen:"repo"` 24 Subject string `json:"subject" cborgen:"subject"` 25}