[#53] *: Remove external pkg/errors dependency

Replaced functions from pkg/errors by functions from errors, fixed not fully correct comment

Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
This commit is contained in:
Angira Kekteeva 2021-05-20 13:14:17 +03:00
parent b595f04ce0
commit 9d496d70a7
6 changed files with 26 additions and 23 deletions

View file

@ -2,6 +2,7 @@ package layer
import (
"context"
"errors"
"io"
"net/url"
"strconv"
@ -11,7 +12,6 @@ import (
"github.com/nspcc-dev/neofs-api-go/pkg/container"
"github.com/nspcc-dev/neofs-api-go/pkg/object"
"github.com/nspcc-dev/neofs-s3-gw/api"
"github.com/pkg/errors"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)