diff --git a/Makefile b/Makefile index 66c6bbd..7de8631 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,9 @@ ensure: dep ensure -update dep status +fmt: + go fmt ./... + run: $(BINARY) ./$(BINARY) -vv serve diff --git a/cmd/paste/main.go b/cmd/paste/main.go index 9bf2d60..4de4659 100644 --- a/cmd/paste/main.go +++ b/cmd/paste/main.go @@ -27,9 +27,9 @@ package main // import "sour.is/x/paste/cmd/paste" import ( - "sour.is/x/toolbox/httpsrv" - _ "sour.is/x/paste/src/routes" _ "sour.is/x/paste/src/docs" + _ "sour.is/x/paste/src/routes" + "sour.is/x/toolbox/httpsrv" ) func main() {