diff options
author | Alex Auvolat <alex@adnab.me> | 2022-06-29 16:04:11 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-06-29 16:04:11 +0200 |
commit | 9ef069923bbf7358caf1f2739befe20adbdca760 (patch) | |
tree | 31d8e072d58ae5717703c9339d69664405d4d2dd /src/mail/mailbox.rs | |
parent | d737e33b5ac4a09ada10de70b78b866481d69cba (diff) | |
download | aerogramme-9ef069923bbf7358caf1f2739befe20adbdca760.tar.gz aerogramme-9ef069923bbf7358caf1f2739befe20adbdca760.zip |
Add call to testing procedure
Diffstat (limited to 'src/mail/mailbox.rs')
-rw-r--r-- | src/mail/mailbox.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mail/mailbox.rs b/src/mail/mailbox.rs index 2e890d9..ca672da 100644 --- a/src/mail/mailbox.rs +++ b/src/mail/mailbox.rs @@ -71,6 +71,11 @@ impl Mailbox { pub async fn fetch(&self) -> Result<()> { unimplemented!() } + + /// Test procedure TODO WILL REMOVE THIS + pub async fn test(&self) -> Result<()> { + self.mbox.write().await.test().await + } } // ---- |