()
| 104 | this.db = null; |
| 105 | for (const filePath of this.activeTempFiles) { |
| 106 | void fs.unlink(filePath).catch(() => {}); |
| 107 | } |
| 108 | this.activeTempFiles.clear(); |
| 109 | void this.cleanupTempDirectory(); |
| 110 | } |
| 111 | |
| 112 | async setup(): Promise<void> { |
| 113 | await this.initDB(); |
| 114 | } |
| 115 | |
| 116 | name = "save"; |
| 117 | description = help_text; |
| 118 |
nothing calls this directly
no test coverage detected