From 190f37a1185665b64543604a56e9be65a7c9d737 Mon Sep 17 00:00:00 2001 From: Aumetra Weisman Date: Thu, 9 May 2024 17:06:44 +0200 Subject: [PATCH] remove startup figlet --- kitsune/src/consts.rs | 14 -------------- kitsune/src/main.rs | 3 --- 2 files changed, 17 deletions(-) diff --git a/kitsune/src/consts.rs b/kitsune/src/consts.rs index c0e7dc3bf..fe1ae9f94 100644 --- a/kitsune/src/consts.rs +++ b/kitsune/src/consts.rs @@ -1,18 +1,4 @@ pub const API_DEFAULT_LIMIT: usize = 20; -pub const STARTUP_FIGLET: &str = r" -┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ -┃ ┃ -┃ ██╗ ██╗██╗████████╗███████╗██╗ ██╗███╗ ██╗███████╗ ┃ -┃ ██║ ██╔╝██║╚══██╔══╝██╔════╝██║ ██║████╗ ██║██╔════╝ ┃ -┃ █████╔╝ ██║ ██║ ███████╗██║ ██║██╔██╗ ██║█████╗ ┃ -┃ ██╔═██╗ ██║ ██║ ╚════██║██║ ██║██║╚██╗██║██╔══╝ ┃ -┃ ██║ ██╗██║ ██║ ███████║╚██████╔╝██║ ╚████║███████╗ ┃ -┃ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝ ┃ -┃ ┃ -┃ ActivityPub-federated microblogging ┃ -┃ ┃ -┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ -"; #[must_use] pub fn default_limit() -> T diff --git a/kitsune/src/main.rs b/kitsune/src/main.rs index 107ca69d3..d40bf5d33 100644 --- a/kitsune/src/main.rs +++ b/kitsune/src/main.rs @@ -1,6 +1,5 @@ use clap::Parser; use color_eyre::eyre::{self, Context}; -use kitsune::consts::STARTUP_FIGLET; use kitsune_config::Configuration; use kitsune_core::consts::VERSION; use kitsune_job_runner::JobDispatcherState; @@ -19,8 +18,6 @@ struct Args { } async fn boot() -> eyre::Result<()> { - println!("{STARTUP_FIGLET}"); - let args = Args::parse(); let config = Configuration::load(args.config).await?; kitsune_observability::initialise(env!("CARGO_PKG_NAME"), &config)?;