github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/pkg/domain/infra/tunnel/trust.go (about) 1 package tunnel 2 3 import ( 4 "context" 5 "errors" 6 7 "github.com/hanks177/podman/v4/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 }