diff --git a/src/cli/run_cli.rs b/src/cli/run_cli.rs new file mode 100644 index 0000000..e070aea --- /dev/null +++ b/src/cli/run_cli.rs @@ -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(()) + } +}