31 lines
762 B
Go
31 lines
762 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// installCmd represents the install command
|
||
|
var installCmd = &cobra.Command{
|
||
|
Use: "install",
|
||
|
Short: "installs the database config files for postfix",
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
fmt.Println("install called")
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
rootCmd.AddCommand(installCmd)
|
||
|
|
||
|
// Here you will define your flags and configuration settings.
|
||
|
|
||
|
// Cobra supports Persistent Flags which will work for this command
|
||
|
// and all subcommands, e.g.:
|
||
|
// installCmd.PersistentFlags().String("foo", "", "A help for foo")
|
||
|
|
||
|
// Cobra supports local flags which will only run when this command
|
||
|
// is called directly, e.g.:
|
||
|
// installCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
||
|
}
|