This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
modikai-dtool/cmd/version.go
2023-08-03 15:25:17 +08:00

21 lines
339 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var versionCmd = &cobra.Command{
Use: "version",
Short: "get server version with version.bind",
Long: "get server version with version.bind chaos txt request",
Run: version,
}
func version(cmd *cobra.Command, args []string) {
}
func init() {
rootCmd.AddCommand(versionCmd)
}