feat: initialize Go agent module with config, Makefile and project structure

This commit is contained in:
Claude Agent
2026-03-19 12:08:00 +01:00
parent 0714961dd6
commit d9d0804361
5 changed files with 90 additions and 0 deletions

24
Agent/go.mod Normal file
View File

@@ -0,0 +1,24 @@
module github.com/nexusrmm/agent
go 1.22
require (
github.com/shirou/gopsutil/v4 v4.24.0
google.golang.org/grpc v1.60.0
google.golang.org/protobuf v1.32.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/ebitengine/purego v0.7.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/lufia/plan9stats v0.0.0-20240513124658-fba389f38bae // indirect
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d84 // indirect
github.com/tklauser/go-sysconf v0.3.14 // indirect
github.com/tklauser/numcpus v0.8.0 // indirect
github.com/yusufpapurcu/info v0.0.0-20240514213526-8f62d0eb11ac // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240221002015-b0ce06bbee7c // indirect
)