7 lines
75 B
Makefile
7 lines
75 B
Makefile
build:
|
|
rm -rf bin
|
|
mkdir bin
|
|
go build -o bin ./...
|
|
|
|
check:
|
|
go fmt ./...
|