| 40 | } |
| 41 | |
| 42 | void cluster::global_command_get(snowflake id, command_completion_event_t callback) { |
| 43 | rest_request<slashcommand>(this, API_PATH "/applications", std::to_string(me.id), "commands/" + std::to_string(id), m_get, "", callback); |
| 44 | } |
| 45 | |
| 46 | void cluster::global_command_delete(snowflake id, command_completion_event_t callback) { |
| 47 | rest_request<confirmation>(this, API_PATH "/applications", std::to_string(me.id), "commands/" + std::to_string(id), m_delete, "", callback); |
nothing calls this directly
no test coverage detected