summary refs log tree commit diff
path: root/src/system/bot/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/system/bot/mod.rs')
-rw-r--r--src/system/bot/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/system/bot/mod.rs b/src/system/bot/mod.rs
index f0a2e45..2aa3e0a 100644
--- a/src/system/bot/mod.rs
+++ b/src/system/bot/mod.rs
@@ -70,6 +70,10 @@ impl Bot {
         self.client.fetch_message(message_id, channel_id).await
     }
 
+    pub async fn fetch_recent_channel_messages(&self, channel_id: ChannelId) -> Result<Vec<FullMessage>, TwiError> {
+        self.client.fetch_recent_channel_messages(channel_id).await
+    }
+
     pub async fn resend_message(&self, message_id: MessageId, channel_id: ChannelId) {
         self.client.resend_message(message_id, channel_id).await;
     }