feat(cli): authforgectl subcommand structure with clap derive (Task C1)

This commit is contained in:
michael
2026-04-27 08:16:29 -07:00
parent 6351041a6c
commit 1b223fe4f9
3 changed files with 167 additions and 12 deletions

7
cli/src/commands/mod.rs Normal file
View File

@@ -0,0 +1,7 @@
use anyhow::Result;
pub(crate) async fn dispatch(_json: bool, cmd: super::Cmd) -> Result<()> {
eprintln!("authforgectl: subcommand dispatcher not yet wired in this build");
let _ = cmd;
Ok(())
}