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