summaryrefslogtreecommitdiff
path: root/pkg/plugins/plugins_windows.go
blob: ddf1d786c62ba10bb45a6ddf053ef0b0376827d2 (plain)
1
2
3
4
5
6
7
package plugins // import "github.com/docker/docker/pkg/plugins"

// ScopedPath returns the path scoped to the plugin's rootfs.
// For v1 plugins, this always returns the path unchanged as v1 plugins run directly on the host.
func (p *Plugin) ScopedPath(s string) string {
	return s
}