17 lines
313 B
Go
17 lines
313 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "Print the version number of muldap",
|
|
Long: `All software has versions. This is muldap's`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("Metaunix.net LDAP tool v0.1.0")
|
|
},
|
|
}
|