github.com/henvic/wedeploycli@v1.7.6-0.20200319005353-3630f582f284/command/about/about.go (about)

     1  package about
     2  
     3  import (
     4  	"github.com/henvic/wedeploycli/command/about/legal"
     5  	"github.com/spf13/cobra"
     6  )
     7  
     8  // AboutCmd is used for showing the abouts of all used libraries
     9  var AboutCmd = &cobra.Command{
    10  	Use:   "about",
    11  	Short: "About this software",
    12  }
    13  
    14  func init() {
    15  	AboutCmd.AddCommand(legal.LegalCmd)
    16  }