From 8def052b9dfa408122e1d0cb3091ab5df2f8dc59 Mon Sep 17 00:00:00 2001 From: claudemiro Date: Sat, 17 Jan 2015 08:21:23 -0300 Subject: [PATCH] Added a command line banner. --- main.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/main.go b/main.go index de0169c..8718170 100644 --- a/main.go +++ b/main.go @@ -45,6 +45,15 @@ func main() { } func printBanner() { + fmt.Print("\033[36m") + fmt.Print(` +██╗██████╗ ███████╗ +██║██╔══██╗██╔════╝ +██║██████╔╝█████╗ +██║██╔═══╝ ██╔══╝ +██║██║ ███████╗ +╚═╝╚═╝ ╚══════╝`) + fmt.Println("\033[0m") fmt.Println("\033[32mWelcome to Ipê - Yet another Pusher server clone\033[0m") fmt.Println("\033[33mBy: Claudemiro Alves Feitosa Neto \033[0m") }