use super::ChatMethods;
use crate::{methods::ForwardMessage, types::parameters::ImplicitChatId};
pub trait Forwardable: ChatMethods {
fn forward_to<'a>(
&'a self,
chat_id: impl ImplicitChatId<'a>,
) -> ForwardMessage<'a> {
self.bot()
.forward_message(chat_id, self.chat().id, self.message_id())
}
}