Files
kubeshark/cli/cmd/auth.go
2021-10-05 16:35:16 +03:00

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)
}