From 99da2099bae0b80dd63c905988cd1e37402e9ad1 Mon Sep 17 00:00:00 2001 From: Saeid Aghapour Date: Mon, 3 Jul 2023 20:55:56 +0330 Subject: [PATCH] add DB to the end of banner and make the banner italic --- cmd/app.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/cmd/app.go b/cmd/app.go index 3d14bcc6..006f3444 100644 --- a/cmd/app.go +++ b/cmd/app.go @@ -30,15 +30,15 @@ func init() { }) App.SetPrintASCIILogo(func(a *grumble.App) { fmt.Println(strings.Join([]string{` - __________ __ ___ ___ -| |______/ | | \ \ / / -| | | | \ \/ / -| |________ | | \ / -| |________| | | \ / -| | | | | | -| | | |_________ | | -|__| |____________| |__| - `}, "\r\n")) + ______ __ ____ ____ + / ____/ / / __ __ / __ \ / __ ) + / / / / / / / / / / / / / /_/ / + / /_ / / / / / / / / / / / __ | + / __/ / / / /_/ / / / / / / / / / + / / / / \__, / / /_/ / / /_/ / + /_/ /_/ ,__/ / /_____/ /_____/ + /____/ +`}, "\r\n")) }) register(App) }