mirror of
https://gitlab.durp.info/durfy/apps/durpcli.git
synced 2026-05-08 00:11:28 -05:00
19 lines
228 B
Go
19 lines
228 B
Go
|
|
package cfg
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/spf13/cobra"
|
||
|
|
)
|
||
|
|
|
||
|
|
var Cfgcmd = &cobra.Command{
|
||
|
|
Use: "cfg",
|
||
|
|
Short: "All things Authorization",
|
||
|
|
Long: ``,
|
||
|
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
|
cmd.Help()
|
||
|
|
},
|
||
|
|
}
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
|
||
|
|
}
|