use a real cool banner

This commit is contained in:
César Gallego Rodríguez
2019-09-04 12:16:14 +02:00
parent bc0ca07dc2
commit d56850e69e
2 changed files with 16 additions and 3 deletions
+15 -2
View File
@@ -1,5 +1,18 @@
package banner
func Banner() string {
return "KAPOW!!!"
import "fmt"
func Banner(version string) string {
return fmt.Sprintf(`
___ __ ________ ________ ________ ___ __ ___
|\ \|\ \ |\ __ \|\ __ \|\ __ \|\ \ |\ \|\ \
\ \ \/ /|\ \ \|\ \ \ \|\ \ \ \|\ \ \ \ \ \ \ \ \
\ \ ___ \ \ __ \ \ ____\ \ \\\ \ \ \ __\ \ \ \ \
\ \ \\ \ \ \ \ \ \ \ \___|\ \ \\\ \ \ \|\__\_\ \ \__\
\ \__\\ \__\ \__\ \__\ \__\ \ \_______\ \____________\|__|
\|__| \|__|\|__|\|__|\|__| \|_______|\|____________| ___
|\__\
\|__|
ver: %s
`, version)
}