github.com/ianfoo/lab@v0.9.5-0.20180123060006-5ed79f2ccfc7/cmd/ci.go (about)

     1  package cmd
     2  
     3  import (
     4  	"github.com/spf13/cobra"
     5  )
     6  
     7  // ciCmd represents the ci command
     8  var ciCmd = &cobra.Command{
     9  	Use:   "ci",
    10  	Short: "",
    11  	Long:  ``,
    12  	Run: func(cmd *cobra.Command, args []string) {
    13  	},
    14  }
    15  
    16  func init() {
    17  	RootCmd.AddCommand(ciCmd)
    18  }