aboutsummaryrefslogtreecommitdiff
path: root/src/imap/request.rs
blob: 49b49923e78da2b4c137ef8f17089f4d5b6458e3 (plain) (blame)
1
2
3
4
5
6
7
use imap_codec::imap_types::command::Command;

#[derive(Debug)]
pub enum Request {
    ImapCommand(Command<'static>),
    Idle,
}