fix parsing with new default comment

This commit is contained in:
Robin Appelman 2026-05-06 17:14:20 +02:00
commit 1da941262e
4 changed files with 65 additions and 2 deletions

View file

@ -1,8 +1,10 @@
use std::env::args;
use miette::Result;
use nextcloud_config_parser::parse;
fn main() -> Result<()> {
let config = parse("tests/configs/basic.php")?;
let config = parse(args().nth(1).expect("no config file provided"))?;
dbg!(config);
Ok(())
}