()
| 288 | } |
| 289 | |
| 290 | export function serviceUninstall(): void { |
| 291 | switch (process.platform) { |
| 292 | case 'darwin': |
| 293 | return uninstallMacos() |
| 294 | case 'linux': |
| 295 | return uninstallLinux() |
| 296 | default: |
| 297 | console.error('Windows is not yet supported for daemon mode.') |
| 298 | process.exit(1) |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | export function getServiceStatus(): ServiceStatus { |
| 303 | switch (process.platform) { |
no test coverage detected