(processes = [], options = {})
| 10 | class Pm2Module { |
| 11 | |
| 12 | constructor(processes = [], options = {}) { |
| 13 | options.routes = Pm2Module._parseProcesses(processes); |
| 14 | this.routes = options.routes; |
| 15 | this.webhookServer = new WebhookServer(options); |
| 16 | } |
| 17 | |
| 18 | start() { |
| 19 | return this.webhookServer.start() |
nothing calls this directly
no test coverage detected