blob: 7c79cb5a25471bc8265e5228b38e0a7d3c143644 [file] [log] [blame]
package daemon
import (
"errors"
"github.com/docker/docker/daemon/config"
)
type runtimes struct{}
func (r *runtimes) Get(name string) (string, interface{}, error) {
return "", nil, errors.New("not implemented")
}
func initRuntimesDir(*config.Config) error {
return nil
}
func setupRuntimes(*config.Config) (runtimes, error) {
return runtimes{}, nil
}