| 1156 | } |
| 1157 | |
| 1158 | static void unwatch_project(cbm_http_server_t *srv, const char *name) { |
| 1159 | if (srv && srv->watcher) { |
| 1160 | cbm_watcher_unwatch(srv->watcher, name); |
| 1161 | } |
| 1162 | } |
| 1163 | |
| 1164 | /* DELETE /api/project?name=X — deletes the .db file */ |
| 1165 | static void handle_delete_project(cbm_http_server_t *srv, cbm_http_conn_t *c, |
no test coverage detected