mirror of
https://github.com/containers/podman.git
synced 2025-06-17 15:08:08 +08:00
13 lines
412 B
Go
13 lines
412 B
Go
package trust
|
|
|
|
// Policy describes a basic trust policy configuration
|
|
type Policy struct {
|
|
Name string `json:"name"`
|
|
RepoName string `json:"repo_name,omitempty"`
|
|
Keys []string `json:"keys,omitempty"`
|
|
SignatureStore string `json:"sigstore"`
|
|
Transport string `json:"transport"`
|
|
Type string `json:"type"`
|
|
GPGId string `json:"gpg_id,omitempty"`
|
|
}
|