mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 08:34:13 +02:00
254 B
254 B
nextcloud-config-parser
Rust parser for nextcloud config files.
Usage
use nextcloud_config_parser::{parse, Error};
fn main() -> Result<(), Error> {
let config = parse("tests/configs/basic.php")?;
dbg!(config);
Ok(())
}