Private
Public Access
1
0

Cool ASCII art welcome message

This commit is contained in:
2023-08-08 21:37:51 -07:00
parent b77020e23c
commit 5c9f580dff

14
main.go
View File

@@ -2,6 +2,7 @@ package main
import ( import (
"flag" "flag"
"fmt"
"net/http" "net/http"
"os" "os"
@@ -34,9 +35,22 @@ func setupLogging() {
} }
} }
func printWelcomeMessage() {
// Print ascii art of "Kordophone"
fmt.Println(`
_ __ _ _
| |/ /___ _ _ __| |___ _ __| |_ ___ _ _ ___
| ' </ _ \ '_/ _' / _ \ '_ \ ' \/ _ \ ' \/ -_)
|_|\_\___/_| \__,_\___/ .__/_||_\___/_||_\___|
|_|
`)
}
func main() { func main() {
setupLogging() setupLogging()
printWelcomeMessage()
c := web.MockHTTPServerConfiguration{ c := web.MockHTTPServerConfiguration{
AuthEnabled: false, AuthEnabled: false,
} }