blob: a2a82d0d4df14f7430851144910688c81f423ef8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// +build remoteclient
package adapter
import (
"github.com/containers/libpod/libpod/define"
)
func (r *LocalRuntime) AutoUpdate() ([]string, []error) {
return nil, []error{define.ErrNotImplemented}
}
|