github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/pkg/domain/infra/tunnel/trust.go (about) 1 package tunnel 2 3 import ( 4 "context" 5 "errors" 6 7 "github.com/containers/podman/v2/pkg/domain/entities" 8 ) 9 10 func (ir *ImageEngine) ShowTrust(ctx context.Context, args []string, options entities.ShowTrustOptions) (*entities.ShowTrustReport, error) { 11 return nil, errors.New("not implemented") 12 } 13 14 func (ir *ImageEngine) SetTrust(ctx context.Context, args []string, options entities.SetTrustOptions) error { 15 return errors.New("not implemented") 16 }