feat(cli/org): org commands module stub + pub mod wiring

This commit is contained in:
adlee-was-taken
2026-06-19 23:14:29 -04:00
parent 17df315f0e
commit 7daedb33e0
2 changed files with 8 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ pub mod edit;
pub mod generate;
pub mod get;
pub mod import;
pub mod org;
pub mod init;
pub mod list;
pub mod rate;

View File

@@ -0,0 +1,7 @@
//! `relicario org` subcommands for multi-user org vault management.
use anyhow::Result;
pub fn run_init(_dir: &std::path::Path, _name: &str) -> Result<()> {
todo!("org init")
}