From 360c4d64336a3bd6a3675588072fd352c2d3519b Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Fri, 10 Oct 2025 07:49:53 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(cli):=20add=20run=20cli=20comm?= =?UTF-8?q?and?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - introduce run_cli module with clap integration - implement basic structure for future command logic --- src/cli/run_cli.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/cli/run_cli.rs 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(()) + } +}