mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-06-08 00:02:34 +00:00
fix json types
This commit is contained in:
@@ -4,11 +4,11 @@ package pds
|
||||
|
||||
// CrewRecord represents a crew member in the hold
|
||||
type CrewRecord struct {
|
||||
Type string `cborgen:"$type"`
|
||||
Member string `cborgen:"member"`
|
||||
Role string `cborgen:"role"`
|
||||
Permissions []string `cborgen:"permissions"`
|
||||
AddedAt string `cborgen:"addedAt"` // RFC3339 timestamp
|
||||
Type string `json:"$type" cborgen:"$type"`
|
||||
Member string `json:"member" cborgen:"member"`
|
||||
Role string `json:"role" cborgen:"role"`
|
||||
Permissions []string `json:"permissions" cborgen:"permissions"`
|
||||
AddedAt string `json:"addedAt" cborgen:"addedAt"` // RFC3339 timestamp
|
||||
}
|
||||
|
||||
const (
|
||||
|
||||
Reference in New Issue
Block a user