mirror of
https://gitlab.com/psuapp/psu.git
synced 2024-08-30 18:12:34 +00:00
16 lines
225 B
Go
16 lines
225 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// settingCmd represents the config command
|
|
var settingCmd = &cobra.Command{
|
|
Use: "setting",
|
|
Short: "Manage settings",
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(settingCmd)
|
|
}
|