plugins_windows.go 284 B

12345678
  1. package plugins
  2. // BasePath returns the path to which all paths returned by the plugin are relative to.
  3. // For Windows v1 plugins, this returns an empty string, since the plugin is already aware
  4. // of the absolute path of the mount.
  5. func (p *Plugin) BasePath() string {
  6. return ""
  7. }