From 1907bff3732cb4c612e4118137d8f3c8829cc8c6 Mon Sep 17 00:00:00 2001 From: ia Date: Mon, 25 Jun 2018 07:06:58 +0200 Subject: [PATCH] all: gofmt (#1956) Run standard gofmt command on project root. - go version go1.10.3 darwin/amd64 Signed-off-by: ia --- dialects/postgres/postgres.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dialects/postgres/postgres.go b/dialects/postgres/postgres.go index 1d0dcb60..424e8bdc 100644 --- a/dialects/postgres/postgres.go +++ b/dialects/postgres/postgres.go @@ -4,11 +4,11 @@ import ( "database/sql" "database/sql/driver" - _ "github.com/lib/pq" - "github.com/lib/pq/hstore" "encoding/json" "errors" "fmt" + _ "github.com/lib/pq" + "github.com/lib/pq/hstore" ) type Hstore map[string]*string