Files
mygo/mygo.server/cmd/version.go
Huxley Deng c737ff24d8 Init commit.
Add: simple project structure for `mygo.server`.

Add: README files.
2025-06-20 16:45:01 +08:00

38 lines
882 B
Go

/*
Copyright © 2025 NAME HERE <EMAIL ADDRESS>
*/
package cmd
import (
"fmt"
"github.com/spf13/cobra"
"github.com/dhao2001/mygo.server/internal/app"
)
// versionCmd represents the version command
var versionCmd = &cobra.Command{
Use: "version",
Short: "Print version information",
Long: "Print app version to stdout",
Run: func(cmd *cobra.Command, args []string) {
fmt.Printf("v%s\n", app.Version)
},
}
func init() {
rootCmd.AddCommand(versionCmd)
// Here you will define your flags and configuration settings.
// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// versionCmd.PersistentFlags().String("foo", "", "A help for foo")
// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// versionCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}