(paths)
| 59 | } |
| 60 | |
| 61 | function filesPresent(paths) { |
| 62 | return { |
| 63 | cycleProgress: fs.existsSync(paths.cycleProgressPath), |
| 64 | solidifyState: fs.existsSync(paths.solidifyStatePath), |
| 65 | events: fs.existsSync(paths.eventsPath), |
| 66 | assetCallLog: fs.existsSync(paths.assetCallLogPath), |
| 67 | pipelineEvents: fs.existsSync(paths.pipelineEventsPath), |
| 68 | }; |
| 69 | } |
| 70 | |
| 71 | module.exports = { getStatus, getProxySettings }; |