mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 08:34:13 +02:00
10 lines
209 B
Rust
10 lines
209 B
Rust
use std::env::args;
|
|
|
|
use miette::Result;
|
|
use nextcloud_config_parser::parse;
|
|
|
|
fn main() -> Result<()> {
|
|
let config = parse(args().nth(1).expect("no config file provided"))?;
|
|
dbg!(config);
|
|
Ok(())
|
|
}
|