Initial IronStorage project structure

This commit is contained in:
2026-08-09 20:37:58 +02:00
commit fa3bb44771
29 changed files with 7204 additions and 0 deletions

13
apps/cli/src/main.rs Normal file
View File

@@ -0,0 +1,13 @@
#![forbid(unsafe_code)]
#![deny(clippy::disallowed_types)]
use clap::Parser;
#[derive(Parser)]
#[command(version, about = "A pass-compatible password-store client")]
struct Arguments {}
fn main() {
Arguments::parse();
println!("{}", ironstorage::PRODUCT_NAME);
}