Files
epusdt/src/main.go
T
Ashang 20c576b9bc init
2022-04-04 16:01:36 +08:00

19 lines
653 B
Go

package main
import (
"github.com/assimon/luuu/bootstrap"
"github.com/assimon/luuu/config"
"github.com/gookit/color"
)
func main() {
defer func() {
if err := recover(); err != nil {
color.Error.Println("[Start Server Err!!!] ", err)
}
}()
color.Green.Printf("%s\n", " _____ _ _ \n | ____|_ __ _ _ ___ __| | |_ \n | _| | '_ \\| | | / __|/ _` | __|\n | |___| |_) | |_| \\__ \\ (_| | |_ \n |_____| .__/ \\__,_|___/\\__,_|\\__|\n |_| ")
color.Infof("Epusdt version(%s) Powered by %s %s \n", config.GetAppVersion(), "assimon", "https://github.com/assimon/epusdt")
bootstrap.Start()
}