mirror of
https://github.com/vee1e/kubearmor-client.git
synced 2026-09-01 18:28:04 +00:00
23 lines
431 B
Go
23 lines
431 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright 2021 Authors of KubeArmor
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// vmCmd represents the vm command
|
|
var vmCmd = &cobra.Command{
|
|
Use: "vm",
|
|
Short: "VM commands for non kubernetes/bare metal KubeArmor",
|
|
Long: `VM commands for non kubernetes/bare metal KubeArmor`,
|
|
}
|
|
|
|
// ========== //
|
|
// == Init == //
|
|
// ========== //
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(vmCmd)
|
|
}
|