Skip to main content

tbot/contexts/
video_note.rs

1use crate::types;
2
3media_message! {
4    struct VideoNote {
5        /// The video note.
6        video_note: types::VideoNote,
7    } -> EventLoop::video_note
8
9    fn new() -> Self {
10        Self { }
11    }
12}