feat(cli): add run cli command

- introduce run_cli module with clap integration
- implement basic structure for future command logic
This commit is contained in:
Jeremiah Russell
2025-10-10 07:49:53 +01:00
committed by Jeremiah Russell
parent 1c148f8d31
commit 360c4d6433

11
src/cli/run_cli.rs Normal file
View File

@@ -0,0 +1,11 @@
use clap::Parser;
use cull_gmail::Result;
#[derive(Debug, Parser)]
pub struct RunCli {}
impl RunCli {
pub async fn run(&self, _credential: &str) -> Result<()> {
Ok(())
}
}