blob: 41165cc7479bee9b6ccd202cc25855f2ac230160 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package tunnel
import (
"context"
"github.com/containers/podman/v3/pkg/domain/entities"
"github.com/pkg/errors"
)
func (ic *ContainerEngine) AutoUpdate(ctx context.Context, options entities.AutoUpdateOptions) (*entities.AutoUpdateReport, []error) {
return nil, []error{errors.New("not implemented")}
}
|