mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
15 lines
400 B
Go
15 lines
400 B
Go
|
|
package starter
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
func PrintBanner() {
|
||
|
|
fmt.Print(`
|
||
|
|
__ _
|
||
|
|
_ __ ___ __ _ _ _ / _| |_ _ __ _ ___
|
||
|
|
| '_ ' _ \ / _' | | | | |_| | | | |_____ / _' |/ _ \
|
||
|
|
| | | | | | (_| | |_| | _| | |_| |_____| (_| | (_) |
|
||
|
|
|_| |_| |_|\__,_|\__, |_| |_|\__, | \__, |\___/
|
||
|
|
|___/ |___/ |___/
|
||
|
|
`)
|
||
|
|
}
|