banner: add moar bling ✨
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
aadb409606
commit
733f232c49
25
run.go
25
run.go
@ -21,12 +21,18 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
banner = ` __
|
banner = `
|
||||||
____ _________ ___ / /_
|
██████╗ ██████╗███╗ ███╗████████╗
|
||||||
/ __ \/ ___/ __ ` + "`" + `__ \/ __/
|
██╔══██╗██╔════╝████╗ ████║╚══██╔══╝
|
||||||
/ /_/ / /__/ / / / / / /_
|
██████╔╝██║ ██╔████╔██║ ██║
|
||||||
/ .___/\___/_/ /_/ /_/\__/ %s Password Compromise Monitoring Tool %s
|
██╔═══╝ ██║ ██║╚██╔╝██║ ██║
|
||||||
/_/`
|
██║ ╚██████╗██║ ╚═╝ ██║ ██║
|
||||||
|
╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝
|
||||||
|
`
|
||||||
|
slug = `Password Compromise Monitoring Tool
|
||||||
|
https://git.dotya.ml/mirre-mt/pcmt
|
||||||
|
____________________________________
|
||||||
|
`
|
||||||
|
|
||||||
licenseHeader = `pcmt - Password Compromise Monitoring Tool
|
licenseHeader = `pcmt - Password Compromise Monitoring Tool
|
||||||
Copyright (C) git.dotya.ml/wanderer
|
Copyright (C) git.dotya.ml/wanderer
|
||||||
@ -158,5 +164,10 @@ func run() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func printHeader() {
|
func printHeader() {
|
||||||
fmt.Fprintf(os.Stderr, "%s\n\n%s\n\n", licenseHeader, banner)
|
fmt.Fprintf(os.Stderr,
|
||||||
|
"%s\n\n\033[34m%s%s\033[0m\n\n\n",
|
||||||
|
licenseHeader,
|
||||||
|
banner,
|
||||||
|
slug,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user