15 lines
356 B
Go
15 lines
356 B
Go
//go:build !remote
|
|
|
|
package abi
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containers/podman/v5/pkg/autoupdate"
|
|
"github.com/containers/podman/v5/pkg/domain/entities"
|
|
)
|
|
|
|
func (ic *ContainerEngine) AutoUpdate(ctx context.Context, options entities.AutoUpdateOptions) ([]*entities.AutoUpdateReport, []error) {
|
|
return autoupdate.AutoUpdate(ctx, ic.Libpod, options)
|
|
}
|