use core::error;
use std::{path::Path, result};
use btrfsutil::subvolume::Subvolume;
type Error = Box<dyn error::Error>;
type Result<T> = result::Result<T, Error>;
fn main() -> Result<()> {
let sv = Subvolume::get(Path::new("/"))?;
dbg!(sv);
Ok(())
}