45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"allaboutapps.dev/aw/go-starter/cmd/db"
|
|
"allaboutapps.dev/aw/go-starter/cmd/env"
|
|
"allaboutapps.dev/aw/go-starter/cmd/probe"
|
|
"allaboutapps.dev/aw/go-starter/cmd/server"
|
|
"allaboutapps.dev/aw/go-starter/internal/config"
|
|
"github.com/rs/zerolog/log"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// rootCmd represents the base command when called without any subcommands
|
|
var rootCmd = &cobra.Command{
|
|
Version: config.GetFormattedBuildArgs(),
|
|
Use: "app",
|
|
Short: config.ModuleName,
|
|
Long: fmt.Sprintf(`%v
|
|
|
|
A stateless RESTful JSON service written in Go.
|
|
Requires configuration through ENV.`, config.ModuleName),
|
|
}
|
|
|
|
// Execute adds all child commands to the root command and sets flags appropriately.
|
|
// This is called by main.main(). It only needs to happen once to the rootCmd.
|
|
func Execute() {
|
|
rootCmd.SetVersionTemplate(`{{printf "%s\n" .Version}}`)
|
|
|
|
// attach the subcommands
|
|
rootCmd.AddCommand(
|
|
db.New(),
|
|
env.New(),
|
|
probe.New(),
|
|
server.New(),
|
|
)
|
|
|
|
if err := rootCmd.Execute(); err != nil {
|
|
log.Error().Err(err).Msg("Failed to execute root command")
|
|
os.Exit(1)
|
|
}
|
|
}
|