Item price support

This commit is contained in:
2026-03-05 22:45:55 -06:00
parent 4282c2a770
commit d920a1e62d
15 changed files with 834 additions and 26 deletions

15
scripts/rsw/Makefile Normal file
View File

@@ -0,0 +1,15 @@
.PHONY: build test lint clean
BIN := rsw
build:
go build -o $(BIN) .
test:
go test ./... -count=1
lint:
golangci-lint run ./...
clean:
rm -f $(BIN)