mirror of
https://github.com/GMWalletApp/epusdt.git
synced 2026-07-07 10:16:15 +00:00
19 lines
591 B
Go
19 lines
591 B
Go
package command
|
|
|
|
import (
|
|
"github.com/GMWalletApp/epusdt/config"
|
|
"github.com/gookit/color"
|
|
)
|
|
|
|
func printBanner() {
|
|
color.Green.Printf("%s\n", " _____ _ _ \n | ____|_ __ _ _ ___ __| | |_ \n | _| | '_ \\| | | / __|/ _` | __|\n | |___| |_) | |_| \\__ \\ (_| | |_ \n |_____| .__/ \\__,_|___/\\__,_|\\__|\n |_| ")
|
|
color.Infof(
|
|
"Epusdt version(%s) commit(%s) built(%s) Powered by %s %s \n",
|
|
config.GetAppVersion(),
|
|
config.GetBuildCommit(),
|
|
config.GetBuildDate(),
|
|
"GMwalletApp",
|
|
"https://github.com/GMwalletApp/epusdt",
|
|
)
|
|
}
|