(params: { filePath: string })
| 98 | } |
| 99 | |
| 100 | export async function readRuntimeProcsFile(params: { filePath: string }): Promise<string> { |
| 101 | validateConfigFilePath(params.filePath) |
| 102 | return fs.readFile(params.filePath, "utf-8") |
| 103 | } |
| 104 | |
| 105 | export async function writeRuntimeProcsFile(params: { filePath: string; content: string }): Promise<void> { |
| 106 | validateConfigFilePath(params.filePath) |
no test coverage detected