TC2-BBS-Mesh/internal/helpers/helper.go
2025-03-10 13:58:14 +01:00

23 lines
2.4 KiB
Go

package helper
import "fmt"
func PrintBanner() {
banner := `
██████╗ ██████╗ ██████╗ ██████╗ ███████╗
██╔════╝ ██╔═══██╗ ██╔══██╗██╔══██╗██╔════╝
██║ ███╗██║ ██║ ██████╔╝██████╔╝███████╗
██║ ██║██║ ██║ ██╔══██╗██╔══██╗╚════██║
╚██████╔╝╚██████╔╝ ██████╔╝██████╔╝███████║
╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝
███╗ ███╗███████╗███████╗██╗ ██╗████████╗ █████╗ ███████╗████████╗██╗ ██████╗
████╗ ████║██╔════╝██╔════╝██║ ██║╚══██╔══╝██╔══██╗██╔════╝╚══██╔══╝██║██╔════╝
██╔████╔██║█████╗ ███████╗███████║ ██║ ███████║███████╗ ██║ ██║██║
██║╚██╔╝██║██╔══╝ ╚════██║██╔══██║ ██║ ██╔══██║╚════██║ ██║ ██║██║
██║ ╚═╝ ██║███████╗███████║██║ ██║ ██║ ██║ ██║███████║ ██║ ██║╚██████╗
╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═════╝
`
fmt.Println(banner)
}