add project utils file

This commit is contained in:
rmanach 2022-04-12 09:59:16 +02:00
parent 6af2345d86
commit 5d50f308d9
4 changed files with 35 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# binary file
packer

19
Makefile Normal file
View 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
View File

@ -0,0 +1,5 @@
module gotuto
go 1.18
require github.com/akamensky/argparse v1.3.1

9
main.go Normal file
View File

@ -0,0 +1,9 @@
package main
import (
"log"
)
func main() {
log.Printf("packer")
}