github.com/moby/docker@v26.1.3+incompatible/daemon/runtime_windows.go (about) 1 package daemon 2 3 import ( 4 "errors" 5 6 "github.com/docker/docker/daemon/config" 7 ) 8 9 type runtimes struct{} 10 11 func (r *runtimes) Get(name string) (string, interface{}, error) { 12 return "", nil, errors.New("not implemented") 13 } 14 15 func initRuntimesDir(*config.Config) error { 16 return nil 17 } 18 19 func setupRuntimes(*config.Config) (runtimes, error) { 20 return runtimes{}, nil 21 }