mirror of
https://github.com/Schmenn/discord-exploits.git
synced 2024-12-22 21:25:35 +00:00
19 lines
522 B
Go
19 lines
522 B
Go
package modules
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
//Welcome greets the user on startup
|
|
func Welcome() {
|
|
fmt.Println("Discord Exploits --- made by Schmenn")
|
|
fmt.Println(" _ _ _")
|
|
fmt.Println(" | | (_) |")
|
|
fmt.Println(" _____ ___ __ | | ___ _| |_ ___")
|
|
fmt.Println(" / _ \\ \\/ / '_ \\| |/ _ \\| | __/ __|")
|
|
fmt.Println(" | __/> <| |_) | | (_) | | |_\\__ \\")
|
|
fmt.Println(" \\___/_/\\_\\ .__/|_|\\___/|_|\\__|___/")
|
|
fmt.Println(" | |")
|
|
fmt.Println(" |_|")
|
|
}
|