mirror of
https://gerrit.hackerspace.pl/hscloud
synced 2025-03-17 20:24:53 +00:00
21 lines
275 B
Go
21 lines
275 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var rootCmd = &cobra.Command{
|
||
|
Use: "clustercfg",
|
||
|
Short: "admin management tool for k0 cluster",
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
if err := rootCmd.Execute(); err != nil {
|
||
|
fmt.Fprintln(os.Stderr, err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
}
|