containerd/supervisor_unsupported.go

14 lines
217 B
Go
Raw Normal View History

// +build !libcontainer
package containerd
import (
"errors"
"github.com/docker/containerd/runtime"
)
func newRuntime(stateDir string) (runtime.Runtime, error) {
return nil, errors.New("Unsupported runtime")
}