Merge pull request #22 in TUN/cloudflared from rishabh/Ascii to master
* commit '1c248bb9769858566ebea05ca1350314fc0a59e3': Ascii art for Cloudflared
This commit is contained in:
commit
e7946ed363
|
@ -53,6 +53,22 @@ func main() {
|
|||
// Windows service manager closes this channel when it receives stop command.
|
||||
graceShutdownC := make(chan struct{})
|
||||
|
||||
fmt.Print(
|
||||
`
|
||||
|
||||
|
||||
|
||||
██████╗██╗ ██████╗ ██╗ ██╗██████╗ ███████╗██╗ █████╗ ██████╗ ███████╗██████╗
|
||||
██╔════╝██║ ██╔═══██╗██║ ██║██╔══██╗██╔════╝██║ ██╔══██╗██╔══██╗██╔════╝██╔══██╗
|
||||
██║ ██║ ██║ ██║██║ ██║██║ ██║█████╗ ██║ ███████║██████╔╝█████╗ ██║ ██║
|
||||
██║ ██║ ██║ ██║██║ ██║██║ ██║██╔══╝ ██║ ██╔══██║██╔══██╗██╔══╝ ██║ ██║
|
||||
╚██████╗███████╗╚██████╔╝╚██████╔╝██████╔╝██║ ███████╗██║ ██║██║ ██║███████╗██████╔╝
|
||||
╚═════╝╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═════╝
|
||||
|
||||
|
||||
|
||||
`)
|
||||
|
||||
app := &cli.App{}
|
||||
app.Name = "cloudflared"
|
||||
app.Copyright = fmt.Sprintf(`(c) %d Cloudflare Inc.
|
||||
|
|
Loading…
Reference in New Issue