feat: initial Netts energy orchestrator

This commit is contained in:
你的用户名
2025-11-03 19:26:48 +08:00
commit 891c32e288
25 changed files with 2210 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
SHELL := /bin/bash
.PHONY: fmt vet test run build
fmt:
gofmt -w $(shell go list -f '{{.Dir}}' ./...)
vet:
go vet ./...
test:
go test ./...
build:
go build -o bin/netts-energy ./cmd/server
run:
go run ./cmd/server -config config.yaml