kubearmor-client/cmd/vm.go
Aryan-sharma11 16d74a43e7
fix os-release
Signed-off-by: Aryan-sharma11 <aryan1126.sharma@gmail.com>
2025-02-24 13:50:11 +05:30

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)
}