blob: 038c60537ccd19d99d4a14b361c3fde748b4acc1 (
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")}
}
|