From 18c40a02d279b19a8e11a5312f1e1dc68e11955a 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 19310b9d7..3feaa1f42 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 {