adds some code

This commit is contained in:
2025-11-23 13:37:10 +07:00
parent 66591c1b71
commit b506a64ed1
6 changed files with 127 additions and 2 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
APP=node-agent
PKG=./...
.PHONY: build fmt tidy test
build:
go build -o bin/$(APP) ./cmd/node-agent
fmt:
go fmt $(PKG)
tidy:
go mod tidy
test:
go test $(PKG)