| 164 | } |
| 165 | |
| 166 | static struct command_result *listdatastore_ok(struct command *cmd, |
| 167 | const char *method, |
| 168 | const char *buf, |
| 169 | const jsmntok_t *params, |
| 170 | void *cb_arg UNUSED) |
| 171 | { |
| 172 | if (command_check_only(cmd)) |
| 173 | return command_check_done(cmd); |
| 174 | |
| 175 | return forward_result(cmd, method, buf, params, NULL); |
| 176 | } |
| 177 | |
| 178 | /* A command which does async, even if it is a check */ |
| 179 | static struct command_result *json_checkthis(struct command *cmd, |
nothing calls this directly
no test coverage detected