mirror of
https://github.com/DeBrosOfficial/network.git
synced 2026-01-30 20:53:04 +00:00
11 lines
122 B
Makefile
11 lines
122 B
Makefile
.PHONY: build clean run
|
|
|
|
build:
|
|
GOOS=linux GOARCH=amd64 go build -o api main.go
|
|
|
|
clean:
|
|
rm -f api
|
|
|
|
run:
|
|
go run main.go
|