Files
moby/daemon/internal/metrics/plugin_unsupported.go
Derek McGowan f74e5d48b3 Create github.com/moby/moby/v2 module
Signed-off-by: Derek McGowan <derek@mcg.dev>
2025-07-31 10:13:29 -07:00

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) {}