summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/tunnel/trust.go
blob: cf0faaf678b7b04f3a0afac33bc293b075169b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package tunnel

import (
	"context"
	"errors"

	"github.com/containers/podman/v2/pkg/domain/entities"
)

func (ir *ImageEngine) ShowTrust(ctx context.Context, args []string, options entities.ShowTrustOptions) (*entities.ShowTrustReport, error) {
	return nil, errors.New("not implemented")
}

func (ir *ImageEngine) SetTrust(ctx context.Context, args []string, options entities.SetTrustOptions) error {
	return errors.New("not implemented")
}