This repository has been archived on 2023-09-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rust-opensmtpd/examples/dummy.rs
2018-12-29 21:03:33 +01:00

6 lines
142 B
Rust

use env_logger::{Builder, Env};
fn main() {
Builder::from_env(Env::default().default_filter_or("debug")).init();
opensmtpd::run();
}