| 60 | } |
| 61 | |
| 62 | void cluster::gdm_remove(snowflake channel_id, snowflake user_id, command_completion_event_t callback) { |
| 63 | rest_request<confirmation>(this, API_PATH "/channels", std::to_string(channel_id), "recipients/" + std::to_string(user_id), m_delete, "", callback); |
| 64 | } |
| 65 | |
| 66 | } |
nothing calls this directly
no test coverage detected