Skip to content

Commit

Permalink
Add banner
Browse files Browse the repository at this point in the history
  • Loading branch information
thrasher- committed Jan 19, 2018
1 parent 5a2c813 commit 5ca9db8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ type Bot struct {
configFile string
}

const banner = `
______ ______ __ ______ __
/ ____/____ / ____/_____ __ __ ____ / /_ ____ /_ __/_____ ______ ____/ /___ _____
/ / __ / __ \ / / / ___// / / // __ \ / __// __ \ / / / ___// __ // __ // _ \ / ___/
/ /_/ // /_/ // /___ / / / /_/ // /_/ // /_ / /_/ // / / / / /_/ // /_/ // __// /
\____/ \____/ \____//_/ \__, // .___/ \__/ \____//_/ /_/ \__,_/ \__,_/ \___//_/
/____//_/
`

var bot Bot

func main() {
Expand All @@ -53,6 +62,7 @@ func main() {
}

bot.config = &config.Cfg
fmt.Println(banner)
fmt.Println(BuildVersion(false))
log.Printf("Loading config file %s..\n", bot.configFile)

Expand Down

0 comments on commit 5ca9db8

Please sign in to comment.