14 lines
287 B
Rust
14 lines
287 B
Rust
use anyhow::Result;
|
|
use panorama_imap::client::ConfigBuilder;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<()> {
|
|
let _client = ConfigBuilder::default()
|
|
.hostname(String::from("localhost"))
|
|
.port(3993)
|
|
.tls(true)
|
|
.connect()
|
|
.await?;
|
|
|
|
Ok(())
|
|
}
|