We immediately respond with success if we reach here. */
| 51 | |
| 52 | /* We immediately respond with success if we reach here. */ |
| 53 | struct command_result *command_check_done(struct command *cmd) |
| 54 | { |
| 55 | struct json_stream *response; |
| 56 | |
| 57 | assert(cmd->mode == CMD_CHECK); |
| 58 | |
| 59 | response = json_stream_success(cmd); |
| 60 | json_add_string(response, "command_to_check", cmd->json_cmd->name); |
| 61 | return command_success(cmd, response); |
| 62 | } |
| 63 | |
| 64 | struct command_result *command_its_complicated(const char *relationship_details |
| 65 | UNNEEDED) |
no test coverage detected