| 2396 | } |
| 2397 | |
| 2398 | void json_add_opt_plugins(struct json_stream *response, |
| 2399 | const struct plugins *plugins) |
| 2400 | { |
| 2401 | json_add_opt_plugins_array(response, "plugins", plugins, false); |
| 2402 | json_add_opt_plugins_array(response, "important-plugins", plugins, true); |
| 2403 | } |
| 2404 | |
| 2405 | void json_add_opt_disable_plugins(struct json_stream *response, |
| 2406 | const struct plugins *plugins) |
nothing calls this directly
no test coverage detected