Add Makefile

This commit is contained in:
Agustin Godnic 2023-06-12 16:12:02 -03:00
parent a59fc42b16
commit ef3ab979b1
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,9 @@
build:
CGO_ENABLED=0 GOOS=linux go build -o "./bin/service" cmd/service/main.go
test:
go test -v -cover ./...
.PHONY: build test

View File

@ -0,0 +1,5 @@
package main
func main() {
}