feat: add crypt4ghfs-rust
This commit is contained in:
18
__fs/crypt4ghfs-rust/src/cli.rs
Normal file
18
__fs/crypt4ghfs-rust/src/cli.rs
Normal file
@@ -0,0 +1,18 @@
|
||||
use std::path::PathBuf;
|
||||
|
||||
/// Fuse layer exposing Crypt4GH-encrypted files, as if they were decrypted.
|
||||
#[derive(clap::Parser)]
|
||||
#[clap(about, version, author)]
|
||||
pub struct Args {
|
||||
/// Display debug information
|
||||
#[clap(short, long)]
|
||||
pub verbose: bool,
|
||||
|
||||
/// Path to the config file
|
||||
#[clap(short, long)]
|
||||
pub conf: PathBuf,
|
||||
|
||||
/// Path to the mountpoint
|
||||
#[clap()]
|
||||
pub mountpoint: PathBuf,
|
||||
}
|
||||
Reference in New Issue
Block a user