mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
18 lines
496 B
Go
18 lines
496 B
Go
package starter
|
|
|
|
import (
|
|
"fmt"
|
|
"mayfly-go/pkg/config"
|
|
"mayfly-go/pkg/global"
|
|
)
|
|
|
|
func printBanner() {
|
|
global.Log.Print(fmt.Sprintf(`
|
|
__ _
|
|
_ __ ___ __ _ _ _ / _| |_ _ __ _ ___
|
|
| '_ ' _ \ / _' | | | | |_| | | | |_____ / _' |/ _ \
|
|
| | | | | | (_| | |_| | _| | |_| |_____| (_| | (_) | version: %s
|
|
|_| |_| |_|\__,_|\__, |_| |_|\__, | \__, |\___/
|
|
|___/ |___/ |___/ `, config.Version))
|
|
}
|