NewPluginRepositoryTLSServer is used to configure and start a new TLS plugin repo server, exposing the plugins contained in the pluginRepo.
(pluginRepo PluginRepository)
| 143 | // NewPluginRepositoryTLSServer is used to configure and start a new TLS plugin repo server, exposing the plugins contained |
| 144 | // in the pluginRepo. |
| 145 | func NewPluginRepositoryTLSServer(pluginRepo PluginRepository) *Server { |
| 146 | return configurePluginRepositoryServer(NewTLSServer(), pluginRepo) |
| 147 | } |
| 148 | |
| 149 | func configurePluginRepositoryServer(server *Server, pluginRepo PluginRepository) *Server { |
| 150 | // Suppresses ginkgo server logs |
no test coverage detected