From 8ae0b0faf06a0639847bec35d0508942bb5f7094 Mon Sep 17 00:00:00 2001 From: Maya Sergeeva Date: Mon, 17 Jan 2022 21:36:45 +0300 Subject: [PATCH] - Fixing signature --- gin_test.go | 2 +- go.mod | 4 +--- grpc_test.go | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/gin_test.go b/gin_test.go index 9bffbd7..655be80 100644 --- a/gin_test.go +++ b/gin_test.go @@ -10,8 +10,8 @@ import ( "github.com/gin-gonic/gin" "github.com/go-playground/validator/v10" + ginerrors "github.com/spacetab-io/errors-gin-go" errs "github.com/spacetab-io/errors-go" - ginerrors "github.com/spacetab-io/errors-go-gin" "github.com/stretchr/testify/assert" ) diff --git a/go.mod b/go.mod index cabe4f8..f5e0feb 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/spacetab-io/errors-go-gin +module github.com/spacetab-io/errors-gin-go go 1.16 @@ -10,5 +10,3 @@ require ( google.golang.org/genproto v0.0.0-20220114231437-d2e6a121cae0 google.golang.org/grpc v1.43.0 ) - -//replace github.com/spacetab-io/errors-go => ../errors-go diff --git a/grpc_test.go b/grpc_test.go index 66c7c9f..f9089dc 100644 --- a/grpc_test.go +++ b/grpc_test.go @@ -4,7 +4,7 @@ import ( "database/sql" "testing" - ginerrors "github.com/spacetab-io/errors-go-gin" + ginerrors "github.com/spacetab-io/errors-gin-go" "github.com/stretchr/testify/assert" )