NewPluginRepositoryServer is used to configure and start a new plugin repo server, exposing the plugins contained in the pluginRepo.
(pluginRepo PluginRepository)
| 44 | // NewPluginRepositoryServer is used to configure and start a new plugin repo server, exposing the plugins contained |
| 45 | // in the pluginRepo. |
| 46 | func NewPluginRepositoryServer(pluginRepo PluginRepository) *Server { |
| 47 | return configurePluginRepositoryServer(NewTLSServer(), pluginRepo) |
| 48 | } |
| 49 | |
| 50 | // NewPluginRepositoryServerWithPlugin is used to create a server to provide a single configurable_plugin |
| 51 | // with user provided name, version, and platform. |
no test coverage detected