quintodrome/server/banner.go

20 lines
1.4 KiB
Go
Raw Normal View History

2020-01-13 14:24:42 -09:00
package server
import "fmt"
// http://patorjk.com/software/taag/#p=display&f=ANSI%20Shadow&t=Cloud%20Sonic
const banner = `
Version %s
`
2020-01-20 13:35:04 -09:00
func ShowBanner() {
fmt.Printf(banner, Version)
2020-01-13 14:24:42 -09:00
}