Files
kubeshark/cli/cmd/auth.go
2021-10-07 17:28:28 +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)
}