mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2026-01-29 21:49:18 +00:00
23 lines
347 B
Go
23 lines
347 B
Go
/*
|
|
Copyright © 2023 NAME HERE alexsimonjones@gmail.com
|
|
*/
|
|
package find
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// findCmd represents the find command
|
|
var FindCmd = &cobra.Command{
|
|
Use: "find",
|
|
Short: "Find issues within your Kubernetes cluster",
|
|
Long: ``,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
cmd.Help()
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
|
|
}
|