-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprintings.go
19 lines (16 loc) · 883 Bytes
/
printings.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package main
import "fmt"
func printBanner() {
fmt.Println("\033[0;31m" + `
* ) ) ) ( ) )
) /( ( /( ( ( ) ( /( )\ ( /( ( ( /(
( )(_)) )\()) )( ))\ ( /( )\()) (((_) )\()) ))\ ( )\())` + "\033[1;31m" + `
(_(_()) ((_)\ (()\ /((_) )(_)) (_))/ )\___ ((_)\ /((_) )\ ((_)\` + "\033[1;33m" + `
|_ _| | |(_) ((_) (_)) ((_)_ | |_ ((/ __| | |(_) (_)) ((_) | |(_)` + "\033[1;37m" + `
| | | '' \ | '_| / -_) / _` + "`" + ` | | _| | (__ | '' \ / -_) / _| | / /
|_| |_||_| |_| \___| \__,_| \__| \___| |_||_| \___| \__| |_\_\
` + "\033[0m")
}
func printSeparator() {
fmt.Println("\n\033[1;37m==================================================================================\033[0m")
}