chore: smaller logo

This commit is contained in:
Toby 2022-02-09 19:09:31 -08:00
parent f6de3a8fdf
commit 00ea3c9df3

View file

@ -16,12 +16,9 @@ import (
const ( const (
logo = ` logo = `
` `
desc = "A TCP/UDP relay & SOCKS5/HTTP proxy tool optimized for poor network environments" desc = "A TCP/UDP relay & SOCKS5/HTTP proxy tool optimized for poor network environments"
@ -38,7 +35,7 @@ var rootCmd = &cobra.Command{
Use: "hysteria", Use: "hysteria",
Long: fmt.Sprintf("%s%s\n\nVersion:\t%s\nBuildDate:\t%s\nCommitHash:\t%s\nAuthors:\t%s", logo, desc, appVersion, appDate, appCommit, authors), Long: fmt.Sprintf("%s%s\n\nVersion:\t%s\nBuildDate:\t%s\nCommitHash:\t%s\nAuthors:\t%s", logo, desc, appVersion, appDate, appCommit, authors),
Example: "./hysteria server --config /etc/hysteria.json", Example: "./hysteria server --config /etc/hysteria.json",
Version: fmt.Sprintf("%s%s %s %s", logo, appVersion, appDate, appCommit), Version: fmt.Sprintf("%s %s %s", appVersion, appDate, appCommit),
PersistentPreRun: func(cmd *cobra.Command, args []string) { PersistentPreRun: func(cmd *cobra.Command, args []string) {
rand.Seed(time.Now().UnixNano()) rand.Seed(time.Now().UnixNano())