lldap/src/main.rs

8 lines
185 B
Rust
Raw Normal View History

2021-03-02 19:13:58 +00:00
mod infra;
2021-03-02 11:45:30 +00:00
fn main() {
2021-03-02 19:13:58 +00:00
let config = infra::configuration::init();
let cli_opts = infra::cli::init();
println!("Hello, world! Config: {:?}, CLI: {:?}", config, cli_opts);
2021-03-02 11:45:30 +00:00
}