refactor: rename iot client to stateless gateway

This commit is contained in:
2026-08-03 14:43:39 +08:00
parent 5edca1524f
commit aaede08f88
26 changed files with 92 additions and 111 deletions

View File

@@ -2,6 +2,6 @@
set -Eeuo pipefail
mkdir -p ./output
for module in api worker iot-client iot-server; do
for module in api worker iot-gateway iot-server; do
(cd "./backend/${module}" && GOARCH=amd64 GOOS=linux go build -o "../../output/${module}" ./cmd/main/main.go)
done