blob: 0bafc722b58d12f7429569f99bb212286feafb11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package trust
// Trust Policy describes a basic trust policy configuration
type TrustPolicy 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"`
}
|