(path: Path.Path)
| 413 | path.join(homedir(), ".config", "systemd", "user"); |
| 414 | |
| 415 | const systemdUnitPath = (path: Path.Path): string => |
| 416 | path.join(systemdUnitDir(path), `${SERVICE_LABEL}.service`); |
| 417 | |
| 418 | export interface SystemdUnitOptions { |
| 419 | readonly execStart: ReadonlyArray<string>; |
no test coverage detected