diff options
author | Alex Auvolat <alex@adnab.me> | 2022-05-19 15:14:36 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-05-19 15:14:36 +0200 |
commit | 1dcb11643c783096e1b52bf48d6b76121504e6bd (patch) | |
tree | 658f1db34d0e4f91331dabcab85a5898a95d4ad4 /src/mailbox.rs | |
parent | 6be90936a108d971e0cfa3ddaa9c2d54557e30f3 (diff) | |
download | aerogramme-1dcb11643c783096e1b52bf48d6b76121504e6bd.tar.gz aerogramme-1dcb11643c783096e1b52bf48d6b76121504e6bd.zip |
CLI skeleton
Diffstat (limited to 'src/mailbox.rs')
-rw-r--r-- | src/mailbox.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mailbox.rs b/src/mailbox.rs index 44b9f95..8a90eb1 100644 --- a/src/mailbox.rs +++ b/src/mailbox.rs @@ -21,10 +21,7 @@ pub struct Mailbox { } impl Mailbox { - pub async fn new( - creds: &Credentials, - name: String, - ) -> Result<Self> { + pub async fn new(creds: &Credentials, name: String) -> Result<Self> { let uid_index = Bayou::<UidIndex>::new(creds, name.clone())?; Ok(Self { |