xetys/hetzner-kube

View on GitHub
cmd/cluster_etcd.go

Summary

Maintainability
A
0 mins
Test Coverage
package cmd

import "github.com/spf13/cobra"

var etcdCmd = &cobra.Command{
    Use:   "etcd",
    Short: "a subcommand for performing etcd tasks",
    Run: func(cmd *cobra.Command, args []string) {
        cmd.Usage()
    },
}

func init() {
    clusterCmd.AddCommand(etcdCmd)
}