A vibe coded tangled fork which supports pijul.
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.repo.discussion.state
6
7import (
8 "github.com/bluesky-social/indigo/lex/util"
9)
10
11const (
12 RepoDiscussionStateNSID = "sh.tangled.repo.discussion.state"
13)
14
15func init() {
16 util.RegisterType("sh.tangled.repo.discussion.state", &RepoDiscussionState{})
17} //
18// RECORDTYPE: RepoDiscussionState
19type RepoDiscussionState struct {
20 LexiconTypeID string `json:"$type,const=sh.tangled.repo.discussion.state" cborgen:"$type,const=sh.tangled.repo.discussion.state"`
21 CreatedAt string `json:"createdAt" cborgen:"createdAt"`
22 // discussion: The discussion this state change applies to
23 Discussion string `json:"discussion" cborgen:"discussion"`
24 // state: The new state of the discussion
25 State string `json:"state" cborgen:"state"`
26}