mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
8 lines
185 B
Rust
8 lines
185 B
Rust
mod infra;
|
|
|
|
fn main() {
|
|
let config = infra::configuration::init();
|
|
let cli_opts = infra::cli::init();
|
|
println!("Hello, world! Config: {:?}, CLI: {:?}", config, cli_opts);
|
|
}
|