mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-04-09 04:09:08 +00:00
16 lines
189 B
Go
16 lines
189 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var authCmd = &cobra.Command{
|
|
Use: "auth",
|
|
Short: "Authenticate to up9 application",
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(authCmd)
|
|
}
|
|
|