From 4179ae85a875375c394617462e605a6272d057b8 Mon Sep 17 00:00:00 2001 From: Jon Lundy Date: Thu, 15 Mar 2018 11:13:59 -0600 Subject: [PATCH] go fmt --- Makefile | 3 +++ cmd/paste/main.go | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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() {