1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-05-17 15:06:47 +08:00

refactor: stop using github.com/pkg/errors (#10431)

This commit is contained in:
Oleg Kovalov
2024-05-26 13:04:40 +02:00
committed by GitHub
parent 5de5b77168
commit 75df4e8173
4 changed files with 5 additions and 5 deletions

View File

@ -3,6 +3,7 @@ package rpc
import (
"context"
"encoding/json"
"errors"
"io"
"strings"
@ -10,7 +11,6 @@ import (
"github.com/ipfs/go-cid"
iface "github.com/ipfs/kubo/core/coreiface"
caopts "github.com/ipfs/kubo/core/coreiface/options"
"github.com/pkg/errors"
)
type PinAPI HttpApi