We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 740d0be commit 4a0d26eCopy full SHA for 4a0d26e
1 file changed
src/ws4sql.go
@@ -44,7 +44,14 @@ const version = "v0.0.0"
44
// launch(), that is the real entry point. It's separate from the
45
// main method because launch() is called by the unit tests.
46
func main() {
47
- mllog.StdOutf("ws4sql %s", version)
+ // 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
+
55
if sqliteVersion, err := engines.FLAV_SQLITE.GetVersion(); err != nil {
56
mllog.Fatalf("getting sqlite version: %s", err.Error())
57
} else {
0 commit comments