aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f3ef4aa..77e826d 100644
--- a/Makefile
+++ b/Makefile
@@ -12,6 +12,10 @@ build: $(BIN)
$(BIN): main.go
go build -o $(BIN)
+.PHONY: fmt
+fmt:
+ go fmt
+
.PHONY: clean
clean:
go clean