feat: scaffold Go module with version command, Makefile and goreleaser config

This commit is contained in:
2026-08-22 21:41:05 +02:00
parent 8d34426864
commit 2a6498dae1
7 changed files with 163 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package main
import (
"os"
"github.com/m3tam3re/agent-lib/internal/cli"
)
func main() {
if err := cli.Execute(); err != nil {
os.Exit(1)
}
}