github.com/docker/docker@v299999999.0.0-20200612211812-aaf470eca7b5+incompatible/pkg/plugins/plugins_unix.go (about)

     1  // +build !windows
     2  
     3  package plugins // import "github.com/docker/docker/pkg/plugins"
     4  
     5  // ScopedPath returns the path scoped to the plugin's rootfs.
     6  // For v1 plugins, this always returns the path unchanged as v1 plugins run directly on the host.
     7  func (p *Plugin) ScopedPath(s string) string {
     8  	return s
     9  }