mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
12 lines
254 B
Go
12 lines
254 B
Go
//go:build windows
|
|
|
|
package metrics
|
|
|
|
import (
|
|
"github.com/moby/moby/v2/daemon/pkg/plugin"
|
|
"github.com/moby/moby/v2/pkg/plugingetter"
|
|
)
|
|
|
|
func RegisterPlugin(*plugin.Store, string) error { return nil }
|
|
func CleanupPlugin(plugingetter.PluginGetter) {}
|