add project utils file
This commit is contained in:
parent
6af2345d86
commit
5d50f308d9
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
# binary file
|
||||
packer
|
||||
19
Makefile
Normal file
19
Makefile
Normal file
@ -0,0 +1,19 @@
|
||||
.DEFAUL_GOAL := build
|
||||
|
||||
fmt:
|
||||
go fmt ./...
|
||||
.PHONY:fmt
|
||||
|
||||
lint: fmt
|
||||
golint ./...
|
||||
.PHONY:lint
|
||||
|
||||
vet: fmt
|
||||
go vet ./...
|
||||
shadow ./...
|
||||
.PHONY:vet
|
||||
|
||||
build: vet
|
||||
go build -o packer
|
||||
.PHONY:build
|
||||
|
||||
5
go.mod
Normal file
5
go.mod
Normal file
@ -0,0 +1,5 @@
|
||||
module gotuto
|
||||
|
||||
go 1.18
|
||||
|
||||
require github.com/akamensky/argparse v1.3.1
|
||||
Loading…
x
Reference in New Issue
Block a user