yr/justfile

15 lines
147 B
Makefile
Raw Normal View History

default:
just --list
build:
echo "not implemented yet"
dev +args='--help':
go run main.go {{args}}
test:
go test ./...
tidy:
go mod tidy