10 lines
64 B
Makefile
10 lines
64 B
Makefile
all: clean
|
|
|
|
run:
|
|
go run -v .
|
|
|
|
clean:
|
|
go mod tidy
|
|
go clean .
|
|
|