()
| 13 | import { QODEX_HOME } from '../config/defaults.js'; |
| 14 | |
| 15 | export function pidFilePath(): string { return path.join(QODEX_HOME, 'bot.pid'); } |
| 16 | |
| 17 | /** Parse a PID from a pidfile body. PURE. */ |
| 18 | export function parsePid(raw: string | null | undefined): number | null { |
no outgoing calls
no test coverage detected