From f59c53431299e3f3529c1ab6ed3378422ef1acdd Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Thu, 9 Oct 2025 14:37:36 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor(project):=20move?= =?UTF-8?q?=20main.rs=20to=20cli=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - move main.rs to src/cli/main.rs to better reflect its role as a cli entrypoint --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index afbfeb4..5cee8a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,4 +45,4 @@ path = "src/lib.rs" [[bin]] name = "cull-gmail" -path = "src/main.rs" +path = "src/cli/main.rs"