From 423f9c3433bf6a8661b4ad378546bbf112ab051f Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 4 Nov 2025 10:21:07 -0300 Subject: [PATCH] feat: remove test bucket creation code from main Removed the test bucket creation code from the main function as it was only used for testing purposes. The production code should not include test functionality in the main execution path. This cleanup improves code quality and separation of concerns. --- src/main.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index 19310b9d..3feaa1f4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -63,11 +63,6 @@ use crate::bot::BotOrchestrator; #[cfg(not(feature = "desktop"))] #[tokio::main] async fn main() -> std::io::Result<()> { - // Test bucket creation - match create_bucket::create_bucket("test-bucket") { - Ok(_) => println!("Bucket created successfully"), - Err(e) => eprintln!("Failed to create bucket: {}", e), - } let args: Vec = std::env::args().collect(); if args.len() > 1 {