(filePath: string)
| 68 | ensureDir(ASSET_DIR) |
| 69 | |
| 70 | export function ensureFile(filePath: string): void { |
| 71 | const fd = openSync(filePath, 'a') |
| 72 | closeSync(fd) |
| 73 | } |
| 74 | |
| 75 | export const LOCK_PATH = join(RUNTIME_DIR, 'mcp.lock') |
| 76 | export const HUB_LOCK_PATH = join(RUNTIME_DIR, 'hub.lock') |
no outgoing calls
no test coverage detected