(path: Path.Path)
| 37 | }; |
| 38 | |
| 39 | const resolveDataDir = (path: Path.Path): string => |
| 40 | process.env.EXECUTOR_DATA_DIR ?? path.join(homedir(), ".executor"); |
| 41 | |
| 42 | const serverConnectionStorePath = (path: Path.Path): string => |
| 43 | path.join(resolveDataDir(path), "server-connections.json"); |
no outgoing calls
no test coverage detected