mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 07:20:24 +08:00
17 lines
430 B
Go
17 lines
430 B
Go
package starter
|
|
|
|
import (
|
|
"mayfly-go/base/global"
|
|
)
|
|
|
|
func PrintBanner() {
|
|
global.Log.Print(`
|
|
__ _
|
|
_ __ ___ __ _ _ _ / _| |_ _ __ _ ___
|
|
| '_ ' _ \ / _' | | | | |_| | | | |_____ / _' |/ _ \
|
|
| | | | | | (_| | |_| | _| | |_| |_____| (_| | (_) |
|
|
|_| |_| |_|\__,_|\__, |_| |_|\__, | \__, |\___/
|
|
|___/ |___/ |___/
|
|
`)
|
|
}
|