podman-build/pkg/domain/infra/abi/auto-update.go
2025-10-11 12:30:35 +09:00

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)
}