From c3f2037668225e6b618c86a53cf969ae8655451e Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Tue, 13 Jul 2021 14:36:11 -0500 Subject: [PATCH] a --- imap/src/client2/mod.rs | 3 +++ imap/src/lib.rs | 1 + 2 files changed, 4 insertions(+) create mode 100644 imap/src/client2/mod.rs diff --git a/imap/src/client2/mod.rs b/imap/src/client2/mod.rs new file mode 100644 index 0000000..b1b4273 --- /dev/null +++ b/imap/src/client2/mod.rs @@ -0,0 +1,3 @@ +pub struct Client { + +} \ No newline at end of file diff --git a/imap/src/lib.rs b/imap/src/lib.rs index 34ee11f..55be3a6 100644 --- a/imap/src/lib.rs +++ b/imap/src/lib.rs @@ -25,6 +25,7 @@ extern crate log; #[macro_use] extern crate pest_derive; +pub mod client2; pub mod client; pub mod codec; pub mod command;