Init commit.

Add: simple project structure for `mygo.server`.

Add: README files.
This commit is contained in:
2025-06-20 16:45:01 +08:00
commit c737ff24d8
11 changed files with 534 additions and 0 deletions

View File

@ -0,0 +1,37 @@
/*
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")
}