panorama/imap/src/lib.rs

14 lines
187 B
Rust
Raw Normal View History

2021-08-06 02:26:39 +00:00
#[macro_use]
extern crate anyhow;
#[macro_use]
extern crate log;
#[macro_use]
extern crate futures;
#[macro_use]
extern crate derive_builder;
mod auth;
mod client;
mod codec;
mod inner;