A container registry that uses the AT Protocol for manifest storage and S3 for blob storage. atcr.io
docker container atproto go
81
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix json types

+5 -5
+5 -5
pkg/hold/pds/types.go
··· 4 4 5 5 // CrewRecord represents a crew member in the hold 6 6 type CrewRecord struct { 7 - Type string `cborgen:"$type"` 8 - Member string `cborgen:"member"` 9 - Role string `cborgen:"role"` 10 - Permissions []string `cborgen:"permissions"` 11 - AddedAt string `cborgen:"addedAt"` // RFC3339 timestamp 7 + Type string `json:"$type" cborgen:"$type"` 8 + Member string `json:"member" cborgen:"member"` 9 + Role string `json:"role" cborgen:"role"` 10 + Permissions []string `json:"permissions" cborgen:"permissions"` 11 + AddedAt string `json:"addedAt" cborgen:"addedAt"` // RFC3339 timestamp 12 12 } 13 13 14 14 const (