Files
attest/attestation/resolver.go

13 lines
205 B
Go
Raw Permalink Normal View History

2024-08-12 14:49:52 -05:00
package attestation
import (
"context"
"github.com/docker/attest/oci"
2024-08-12 14:49:52 -05:00
)
type Resolver interface {
oci.ImageDetailsResolver
Attestations(ctx context.Context, mediaType string) ([]*Envelope, error)
}