Files
moby/daemon/runtime_windows.go
Matthieu MOREL 96f8c6395e chore: enable use-any rule from revive
Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com>
2025-08-08 17:07:07 +02:00

22 lines
354 B
Go

package daemon
import (
"errors"
"github.com/moby/moby/v2/daemon/config"
)
type runtimes struct{}
func (r *runtimes) Get(name string) (string, any, error) {
return "", nil, errors.New("not implemented")
}
func initRuntimesDir(*config.Config) error {
return nil
}
func setupRuntimes(*config.Config) (runtimes, error) {
return runtimes{}, nil
}