mirror of
https://github.com/containerd/containerd.git
synced 2026-07-27 11:51:12 +00:00
12 lines
121 B
Go
12 lines
121 B
Go
// +build windows
|
|
|
|
package server
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func apply(_ context.Context, _ *Config) error {
|
|
return nil
|
|
}
|