From 51835947a31f63a10baa8cfbb6579e8c62469f50 Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Tue, 11 Feb 2025 13:27:52 +0800 Subject: [PATCH] feat: add spacing to logo output for improved readability --- core/utils/logo.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/utils/logo.go b/core/utils/logo.go index b5c86c05..a109d9f4 100644 --- a/core/utils/logo.go +++ b/core/utils/logo.go @@ -13,6 +13,7 @@ func PrintLogoWithWelcomeInfo() { func printLogo() { figure.NewColorFigure("Crawlab", "slant", "blue", true).Print() + fmt.Println() fmt.Println("Welcome to use Crawlab: the ultimate distributed web crawling platform for efficient, scalable data extraction.") fmt.Println() }