Automatically group imports using nightly rustfmt

This commit is contained in:
link2xt
2023-01-19 13:13:25 +00:00
parent 677136f4ab
commit 4615c84f31
69 changed files with 162 additions and 174 deletions

View File

@@ -1,12 +1,13 @@
//! # SMTP message sending
use super::Smtp;
use std::time::Duration;
use async_smtp::{EmailAddress, Envelope, SendableEmail, Transport};
use super::Smtp;
use crate::config::Config;
use crate::context::Context;
use crate::events::EventType;
use std::time::Duration;
pub type Result<T> = std::result::Result<T, Error>;