We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4cd32d commit ac5ca31Copy full SHA for ac5ca31
2 files changed
cmd/src/main_test.go
@@ -3,7 +3,6 @@ package main
3
import (
4
"context"
5
"encoding/json"
6
- "errors"
7
"io"
8
"net/url"
9
"os"
@@ -13,6 +12,7 @@ import (
13
12
"github.com/google/go-cmp/cmp"
14
"github.com/google/go-cmp/cmp/cmpopts"
15
+ "github.com/sourcegraph/sourcegraph/lib/errors"
16
"github.com/sourcegraph/src-cli/internal/api"
17
)
18
internal/api/api.go
@@ -6,7 +6,6 @@ import (
"crypto/tls"
10
"fmt"
11
"net/http"
@@ -20,6 +19,8 @@ import (
20
19
21
"github.com/sourcegraph/src-cli/internal/oauth"
22
"github.com/sourcegraph/src-cli/internal/version"
+
23
24
25
26
// Client instances provide methods to create API requests.
0 commit comments