mirror of
https://github.com/vee1e/kubearmor-client.git
synced 2026-09-02 18:58:45 +00:00
11 lines
232 B
Go
11 lines
232 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright 2021 Authors of KubeArmor
|
|
|
|
// Package main is responsible for the execution of CLI
|
|
package main
|
|
|
|
import "github.com/kubearmor/kubearmor-client/cmd"
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|