Files
Agent/cmd/main.go
T

21 lines
263 B
Go

package main
import (
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "aegis",
Short: "IPS log-based written on Golang",
Run: func(cmd *cobra.Command, args []string) {
},
}
func Execute() {
rootCmd.Execute()
}
func main() {
Execute()
}