Skip to content

Commit 4a0d26e

Browse files
committed
Startup logo
1 parent 740d0be commit 4a0d26e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/ws4sql.go

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,14 @@ const version = "v0.0.0"
4444
// launch(), that is the real entry point. It's separate from the
4545
// main method because launch() is called by the unit tests.
4646
func main() {
47-
mllog.StdOutf("ws4sql %s", version)
47+
// https://manytools.org/hacker-tools/ascii-banner/, profile "Slant"
48+
mllog.StdOut(" __ __ __")
49+
mllog.StdOut(" _ _______/ // / _________ _/ /")
50+
mllog.StdOut("| | /| / / ___/ // /_/ ___/ __ `/ /")
51+
mllog.StdOut("| |/ |/ (__ )__ __(__ ) /_/ / /")
52+
mllog.StdOut("|__/|__/____/ /_/ /____/\\__, /_/")
53+
mllog.StdOut(" /_/ " + version)
54+
4855
if sqliteVersion, err := engines.FLAV_SQLITE.GetVersion(); err != nil {
4956
mllog.Fatalf("getting sqlite version: %s", err.Error())
5057
} else {

0 commit comments

Comments
 (0)