plugins_linux.go 222 B

1234567
  1. package plugins
  2. // BasePath returns the path to which all paths returned by the plugin are relative to.
  3. // For v1 plugins, this always returns the host's root directory.
  4. func (p *Plugin) BasePath() string {
  5. return "/"
  6. }