mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 16:44:09 +02:00
update dependencies
This commit is contained in:
parent
b388c2ccf0
commit
96954dc116
4 changed files with 15 additions and 16 deletions
|
|
@ -1,12 +1,8 @@
|
|||
use miette::Result;
|
||||
use nextcloud_config_parser::parse;
|
||||
|
||||
fn main() {
|
||||
let config = match parse("tests/configs/basic.php") {
|
||||
Ok(config) => config,
|
||||
Err(err) => {
|
||||
eprintln!("{}", err);
|
||||
return;
|
||||
}
|
||||
};
|
||||
fn main() -> Result<()> {
|
||||
let config = parse("tests/configs/basic.php")?;
|
||||
dbg!(config);
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue