runtime_windows.go 363 B

123456789101112131415161718192021
  1. package daemon
  2. import (
  3. "errors"
  4. "github.com/docker/docker/daemon/config"
  5. )
  6. type runtimes struct{}
  7. func (r *runtimes) Get(name string) (string, interface{}, error) {
  8. return "", nil, errors.New("not implemented")
  9. }
  10. func initRuntimesDir(*config.Config) error {
  11. return nil
  12. }
  13. func setupRuntimes(*config.Config) (runtimes, error) {
  14. return runtimes{}, nil
  15. }