File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff 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.
4646func 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 {
You can’t perform that action at this time.
0 commit comments