xetys/hetzner-kube

View on GitHub
cmd/context.go

Summary

Maintainability
A
0 mins
Test Coverage
package cmd

import (
    "github.com/spf13/cobra"
)

// contextCmd represents the context command
var contextCmd = &cobra.Command{
    Use:   "context",
    Short: "view and manage contexts",
    Run: func(cmd *cobra.Command, args []string) {
        cmd.Usage()
    },
}

func init() {
    rootCmd.AddCommand(contextCmd)
}