From f1ac6561b981e950cfc82992fa87cd4c84a3f7c4 Mon Sep 17 00:00:00 2001 From: David Racine Date: Mon, 16 Nov 2020 15:51:32 -0500 Subject: [PATCH] fix mixup imports --- qrm/utill.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/qrm/utill.go b/qrm/utill.go index a49943c..253d5ac 100644 --- a/qrm/utill.go +++ b/qrm/utill.go @@ -3,15 +3,14 @@ package qrm import ( "database/sql" "fmt" + "github.com/go-jet/jet/v2/internal/utils" + "github.com/go-jet/jet/v2/qrm/internal" + "github.com/google/uuid" "reflect" - "strconv" "strings" "time" - "github.com/google/uuid" - - "github.com/go-jet/jet/v2/internal/utils" - "github.com/go-jet/jet/v2/qrm/internal" + "strconv" ) var scannerInterfaceType = reflect.TypeOf((*sql.Scanner)(nil)).Elem()