Files
attest/pkg/attestation/resolver.go

13 lines
209 B
Go
Raw Permalink Normal View History

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