mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
17 lines
246 B
Go
17 lines
246 B
Go
|
//go:build windows
|
||
|
// +build windows
|
||
|
|
||
|
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
|
||
|
}
|