()
| 146 | const file = Bun.file(path.join(Global.Path.state, "model.json")) |
| 147 | |
| 148 | function save() { |
| 149 | Bun.write( |
| 150 | file, |
| 151 | JSON.stringify({ |
| 152 | recent: modelStore.recent, |
| 153 | favorite: modelStore.favorite, |
| 154 | }), |
| 155 | ) |
| 156 | } |
| 157 | |
| 158 | file |
| 159 | .json() |
no outgoing calls
no test coverage detected