Files
overnight-trading-bot/Makefile
T

14 lines
112 B
Makefile

.PHONY: fmt test run tidy
fmt:
go fmt ./...
test:
go test ./...
run:
go run ./cmd/bot
tidy:
go mod tidy