blob: e0bd535ec6e40513510de4e3c75c290013f88f40 (
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/v3/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")
}
|