.DEFAULT_GOAL := build

fmt:
	go fmt ./...
.PHONY:fmt

lint: fmt
	revive ./...
.PHONY:lint

vet: fmt
	go vet ./...
.PHONY:vet

build: vet
	go build -o hello_world hello.go
.PHONY:build

clean:
	rm rf ./hello_world
.PHONY:clean


docs:
	echo "Starting godocs on http://localhost:8000"
	godoc -http=:8000
.PHONY