All checks were successful
Build (artifact) / build (push) Has been skipped
16 lines
223 B
Go
16 lines
223 B
Go
package app
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
CertCmd = &cobra.Command{
|
|
Use: "cert",
|
|
Short: "Certificate management",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return cmd.Help()
|
|
},
|
|
}
|
|
)
|