diff --git a/engine/proxy.go b/engine/proxy.go index b27c63fdb..b93650a46 100644 --- a/engine/proxy.go +++ b/engine/proxy.go @@ -7,13 +7,13 @@ import ( "encoding/json" "errors" "fmt" - "github.com/steebchen/prisma-client-go/engine/protocol" "net/http" "net/url" "path" "time" "github.com/steebchen/prisma-client-go/binaries" + "github.com/steebchen/prisma-client-go/engine/protocol" "github.com/steebchen/prisma-client-go/logger" "github.com/steebchen/prisma-client-go/runtime/types" ) diff --git a/engine/request.go b/engine/request.go index ad1fd18a7..b5bf22ff3 100644 --- a/engine/request.go +++ b/engine/request.go @@ -4,10 +4,10 @@ import ( "context" "encoding/json" "fmt" - "github.com/steebchen/prisma-client-go/engine/protocol" "net/http" "time" + "github.com/steebchen/prisma-client-go/engine/protocol" "github.com/steebchen/prisma-client-go/logger" "github.com/steebchen/prisma-client-go/runtime/types" ) diff --git a/runtime/types/errors.go b/runtime/types/errors.go index c7f442559..704130db1 100644 --- a/runtime/types/errors.go +++ b/runtime/types/errors.go @@ -2,6 +2,7 @@ package types import ( "errors" + "github.com/steebchen/prisma-client-go/engine/protocol" )