✨ 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:
committed by
Jeremiah Russell
parent
1c148f8d31
commit
360c4d6433
11
src/cli/run_cli.rs
Normal file
11
src/cli/run_cli.rs
Normal 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(())
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user