Files
psu/cmd/setting.go
Juan Carlos Mejías Rodríguez 8d0bd7bc41 Rename configs to settings
2019-11-27 09:17:21 -05:00

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)
}