forked from Mxmilu666/frp
feat(client): translate log messages to Chinese feat(cmd): add authentication token support for API config feat(log): implement rotating file logger with custom styles feat(banner): add banner display function fix(version): update version string for CLI
13 lines
559 B
Go
13 lines
559 B
Go
package banner
|
|
|
|
import "fmt"
|
|
|
|
func DisplayBanner() {
|
|
fmt.Println(" __ ___ __________ ____ ________ ____")
|
|
fmt.Println(" / / ____ / (_)___ _/ ____/ __ \\/ __ \\ / ____/ / / _/")
|
|
fmt.Println(" / / / __ \\/ / / __ `/ /_ / /_/ / /_/ /_____/ / / / / / ")
|
|
fmt.Println(" / /___/ /_/ / / / /_/ / __/ / _, _/ ____/_____/ /___/ /____/ / ")
|
|
fmt.Println("/_____/\\____/_/_/\\__,_/_/ /_/ |_/_/ \\____/_____/___/ ")
|
|
fmt.Println(" ")
|
|
}
|