98e4beadd3
This pattern will, in the future, allow the registration of events handlers and context objects.
7 lines
168 B
Rust
7 lines
168 B
Rust
use env_logger::{Builder, Env};
|
|
use opensmtpd::SmtpIn;
|
|
|
|
fn main() {
|
|
Builder::from_env(Env::default().default_filter_or("debug")).init();
|
|
SmtpIn::new().run();
|
|
}
|