Files
podman/pkg/domain/infra/tunnel/trust.go
2025-10-01 10:42:08 -04:00

17 lines
420 B
Go

package tunnel
import (
"context"
"errors"
"github.com/containers/podman/v5/pkg/domain/entities"
)
func (ir *ImageEngine) ShowTrust(_ context.Context, _ []string, _ entities.ShowTrustOptions) (*entities.ShowTrustReport, error) {
return nil, errors.New("not implemented")
}
func (ir *ImageEngine) SetTrust(_ context.Context, _ []string, _ entities.SetTrustOptions) error {
return errors.New("not implemented")
}