Files
overnight-trading-bot/Makefile
T

14 lines
112 B
Makefile
Raw Normal View History

2026-06-06 22:19:21 +00:00
.PHONY: fmt test run tidy
fmt:
go fmt ./...
test:
go test ./...
run:
go run ./cmd/bot
tidy:
go mod tidy