This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 106
/
logo.go
33 lines (30 loc) · 3.14 KB
/
logo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package main
import (
"fmt"
)
//PrintLogo is a simple function for printing the framework name called upon start.
func PrintLogo() {
fmt.Print(`
_____ _______ _____ _____ _____ _____
/\ \ /::\ \ /\ \ /\ \ /\ \ /\ \
/::\ \ /::::\ \ /::\ \ /::\ \ /::\____\ /::\ \
/::::\ \ /::::::\ \ /::::\ \ \:::\ \ /::::| | \:::\ \
/::::::\ \ /::::::::\ \ /::::::\ \ \:::\ \ /:::::| | \:::\ \
/:::/\:::\ \ /:::/~~\:::\ \ /:::/\:::\ \ \:::\ \ /::::::| | \:::\ \
/:::/ \:::\ \ /:::/ \:::\ \ /:::/__\:::\ \ \:::\ \ /:::/|::| | \:::\ \
/:::/ \:::\ \ /:::/ / \:::\ \ \:::\ \:::\ \ /::::\ \ /:::/ |::| | /::::\ \
/:::/ / \:::\ \ /:::/____/ \:::\____\ ___\:::\ \:::\ \ ____ /::::::\ \ /:::/ |::| | _____ /::::::\ \
/:::/ / \:::\ ___\|:::| | |:::| |/\ \:::\ \:::\ \ /\ \ /:::/\:::\ \ /:::/ |::| |/\ \ /:::/\:::\ \
/:::/____/ ___\:::| |:::|____| |:::| /::\ \:::\ \:::\____/::\ \/:::/ \:::\____/:: / |::| /::\____\/:::/ \:::\____\
\:::\ \ /\ /:::|____|\:::\ \ /:::/ /\:::\ \:::\ \::/ \:::\ /:::/ \::/ \::/ /|::| /:::/ /:::/ \::/ /
\:::\ /::\ \::/ / \:::\ \ /:::/ / \:::\ \:::\ \/____/ \:::\/:::/ / \/____/ \/____/ |::| /:::/ /:::/ / \/____/
\:::\ \:::\ \/____/ \:::\ /:::/ / \:::\ \:::\ \ \::::::/ / |::|/:::/ /:::/ /
\:::\ \:::\____\ \:::\__/:::/ / \:::\ \:::\____\ \::::/____/ |::::::/ /:::/ /
\:::\ /:::/ / \::::::::/ / \:::\ /:::/ / \:::\ \ |:::::/ /\::/ /
\:::\/:::/ / \::::::/ / \:::\/:::/ / \:::\ \ |::::/ / \/____/
\::::::/ / \::::/ / \::::::/ / \:::\ \ /:::/ /
\::::/ / \::/____/ \::::/ / \:::\____\ /:::/ /
\::/____/ ~~ \::/ / \::/ / \::/ /
\/____/ \/____/ \/____/
`)
}