()
| 97 | } |
| 98 | |
| 99 | async function loadConfig() { |
| 100 | let data |
| 101 | |
| 102 | if (configExits) { |
| 103 | console.log("Get from file") |
| 104 | data = JSON.parse(files.readString(configPath)) |
| 105 | } else { |
| 106 | data = null |
| 107 | } |
| 108 | return data |
| 109 | } |
| 110 | |
| 111 | async function loadStation() { |
| 112 | let location |
no outgoing calls
no test coverage detected