mirror of
https://github.com/k3s-io/k3s.git
synced 2026-05-28 04:34:19 -04:00
15 lines
247 B
Go
15 lines
247 B
Go
//go:build windows && !no_cri_dockerd
|
|
|
|
package cridockerd
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/k3s-io/k3s/pkg/daemons/config"
|
|
)
|
|
|
|
const socketPrefix = "npipe://"
|
|
|
|
func setupDockerCRIConfig(ctx context.Context, cfg *config.Node) error {
|
|
return nil
|
|
}
|