opensmtpd-filter-sake/src/main.rs

15 lines
256 B
Rust
Raw Normal View History

2023-07-13 20:05:02 +02:00
use clap::Parser;
2023-07-14 17:29:15 +02:00
mod address;
2023-07-13 20:05:02 +02:00
mod config;
const COMMENT_CHAR: char = '#';
const DEFAULT_SEPARATOR: char = '+';
2023-07-14 17:29:15 +02:00
const KEY_SEPARATOR: char = ':';
2023-07-13 20:05:02 +02:00
fn main() {
let cfg = config::Config::parse();
println!("{cfg:?}");
println!("{:?}", cfg.addresses());
}