Mirror of @tangled.org/core. Running on a Raspberry Pi Zero 2 (Please be gentle).
at HEAD 34 lines 1.2 kB view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package tangled 4 5// schema: sh.tangled.knot.subscribeRepos 6 7const ( 8 KnotSubscribeReposNSID = "sh.tangled.knot.subscribeRepos" 9) 10 11// KnotSubscribeRepos_GitSync1 is a "gitSync1" in the sh.tangled.knot.subscribeRepos schema. 12type KnotSubscribeRepos_GitSync1 struct { 13 // did: Repository DID identifier 14 Did string `json:"did" cborgen:"did"` 15 // seq: The stream sequence number of this message. 16 Seq int64 `json:"seq" cborgen:"seq"` 17} 18 19// KnotSubscribeRepos_GitSync2 is a "gitSync2" in the sh.tangled.knot.subscribeRepos schema. 20type KnotSubscribeRepos_GitSync2 struct { 21 // did: Repository AT-URI identifier 22 Did *string `json:"did,omitempty" cborgen:"did,omitempty"` 23 // seq: The stream sequence number of this message. 24 Seq int64 `json:"seq" cborgen:"seq"` 25} 26 27// KnotSubscribeRepos_Identity is a "identity" in the sh.tangled.knot.subscribeRepos schema. 28type KnotSubscribeRepos_Identity struct { 29 // did: Repository DID identifier 30 Did string `json:"did" cborgen:"did"` 31 // seq: The stream sequence number of this message. 32 Seq int64 `json:"seq" cborgen:"seq"` 33 Time string `json:"time" cborgen:"time"` 34}