feat(cli/org): org commands module stub + pub mod wiring
This commit is contained in:
@@ -14,6 +14,7 @@ pub mod edit;
|
|||||||
pub mod generate;
|
pub mod generate;
|
||||||
pub mod get;
|
pub mod get;
|
||||||
pub mod import;
|
pub mod import;
|
||||||
|
pub mod org;
|
||||||
pub mod init;
|
pub mod init;
|
||||||
pub mod list;
|
pub mod list;
|
||||||
pub mod rate;
|
pub mod rate;
|
||||||
|
|||||||
7
crates/relicario-cli/src/commands/org.rs
Normal file
7
crates/relicario-cli/src/commands/org.rs
Normal 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")
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user