mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
23 lines
359 B
Go
23 lines
359 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// versionCmd represents the version command
|
|
var versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "Show version",
|
|
Long: "Show version.",
|
|
Run: runVersion,
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(versionCmd)
|
|
}
|
|
|
|
func runVersion(cmd *cobra.Command, args []string) {
|
|
fmt.Println(appAboutLong)
|
|
}
|