chore: Add cobra to deps, and linter to proj

This commit is contained in:
2026-06-11 21:10:51 +03:00
parent 835acd2b92
commit be42840c64
4 changed files with 61 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
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()
}