diff options
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 + } } // ---- |