Files
2022-09-26 16:40:40 -07:00

12 lines
205 B
Makefile

test:mocks
go test ./...
run:
go run main.go
cover:mocks
go test ./... -coverprofile=coverage.out && go tool cover -html=coverage.out
mocks:
mockery --dir databases --all --output ./databases/mocks