| 106 | } |
| 107 | |
| 108 | void cluster::get_webhook(snowflake webhook_id, command_completion_event_t callback) { |
| 109 | rest_request<webhook>(this, API_PATH "/webhooks", std::to_string(webhook_id), "", m_get, "", callback); |
| 110 | } |
| 111 | |
| 112 | void cluster::get_webhook_message(const class webhook &wh, snowflake message_id, snowflake thread_id, command_completion_event_t callback) { |
| 113 | std::string parameters = utility::make_url_parameters({ |
nothing calls this directly
no test coverage detected