| 1231 | } |
| 1232 | |
| 1233 | static void unwatch_project(cbm_http_server_t *srv, const char *name) { |
| 1234 | if (srv && srv->watcher) { |
| 1235 | cbm_watcher_unwatch(srv->watcher, name); |
| 1236 | } |
| 1237 | } |
| 1238 | |
| 1239 | /* DELETE /api/project?name=X — deletes the .db file */ |
| 1240 | static void handle_delete_project(cbm_http_server_t *srv, cbm_http_conn_t *c, |
no test coverage detected