()
| 61 | } |
| 62 | |
| 63 | public Start(): void { |
| 64 | if (!this.isRunning) { |
| 65 | this.isRunning = true; |
| 66 | this.plugins.filter(x => x.enabled).forEach(x => x.service.Start()); |
| 67 | |
| 68 | Logger.Get.Log('PluginManager::Start()'); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | public Stop(): void { |
| 73 | if (this.isRunning) { |
no test coverage detected