MCPcopy Create free account
hub / github.com/ChatLab/ChatLab / serviceUninstall

Function serviceUninstall

apps/cli/src/daemon/service.ts:290–300  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

288}
289
290export 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
302export function getServiceStatus(): ServiceStatus {
303 switch (process.platform) {

Callers 1

cli.tsFile · 0.85

Calls 3

uninstallMacosFunction · 0.85
uninstallLinuxFunction · 0.85
errorMethod · 0.65

Tested by

no test coverage detected