()
| 159 | await this.autoDeleteOnStartup(); |
| 160 | } |
| 161 | |
| 162 | private async loadConfig() { |
| 163 | try { |
| 164 | await fs.access(CONFIG_FILE_PATH); |
| 165 | const data = await fs.readFile(CONFIG_FILE_PATH, "utf-8"); |
| 166 | this.config = JSON.parse(data); |
| 167 |
no test coverage detected