23 lines
386 B
Go
23 lines
386 B
Go
package cmd_handle
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func CertEdit(cmd *cobra.Command, args []string) {
|
|
fmt.Println("edit cert")
|
|
}
|
|
|
|
func CertDelete(cmd *cobra.Command, args []string) {
|
|
fmt.Println("delete cert")
|
|
}
|
|
|
|
func CertAdd(cmd *cobra.Command, args []string) {
|
|
fmt.Println("add cert")
|
|
}
|
|
|
|
func CertList(cmd *cobra.Command, args []string) {
|
|
fmt.Println("list cert")
|
|
}
|