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

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