erofs 0.0.2

Utility CLI for interacting with [EROFS](https://docs.kernel.org/filesystems/erofs.html)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use anyhow::Result;
use serde::{Deserialize, Serialize};

#[derive(clap::Args, Debug, Serialize, Deserialize)]
pub struct Args {
  pub image: String,
}

impl Args {
  pub fn run(&self) -> Result<()> {
    println!("{self:#?}");
    Ok(())
  }
}