From 1c5f69f7dbb6b3908f0a3c472bb7466326616197 Mon Sep 17 00:00:00 2001 From: AntwortEinesLebens Date: Sun, 3 Nov 2024 17:27:22 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20=E2=9C=A8=20Remove=20the=20banner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.rs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/main.rs b/src/main.rs index 0346365..17a0eae 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,22 +11,7 @@ use cli::{Arguments, Commands}; use std::error::Error; use traces::Runnable; -fn banner() { - let banner: &str = " - - ██  ██  █████  ██████  - ██  ██ ██   ██ ██       - ██  █  ██ ███████ ██  ███  - ██ ███ ██ ██   ██ ██  ██  -  ███ ███  ██  ██  ██████  - - "; - println!("{}", banner); -} - fn main() -> Result<(), Box> { - banner(); - match Arguments::parse().command { Commands::Traces(action) => action.run()?, };