()
| 91 | } |
| 92 | |
| 93 | func (config *Config) CreatePluginHome() error { |
| 94 | return os.MkdirAll(config.PluginHome(), 0700) |
| 95 | } |
| 96 | |
| 97 | // GetPlugin returns the requested plugin and true if it exists. |
| 98 | func (config *Config) GetPlugin(pluginName string) (Plugin, bool) { |
no test coverage detected