Skip to content

Commit df81310

Browse files
committed
refactor: remove unneeded package
The github.com/pkg/errors was added by mistake and can be removed.
1 parent 837108c commit df81310

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ require (
88
github.com/gocolly/colly/v2 v2.2.0
99
github.com/mark3labs/mcp-go v0.18.0
1010
github.com/neilotoole/slogt v1.1.0
11-
github.com/pkg/errors v0.9.1
1211
github.com/stretchr/testify v1.10.0
1312
github.com/urfave/cli/v3 v3.1.1
1413
golang.org/x/oauth2 v0.29.0

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/9
130130
github.com/peterh/liner v1.0.1-0.20171122030339-3681c2a91233/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc=
131131
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
132132
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
133-
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
134133
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
135134
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
136135
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=

pkg/tools/connect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package tools
33
import (
44
"context"
55
"encoding/json"
6+
"errors"
67
"fmt"
78

89
"github.com/mark3labs/mcp-go/mcp"
9-
"github.com/pkg/errors"
1010
"golang.org/x/sync/errgroup"
1111

1212
"github.com/firebolt-db/mcp-server/pkg/helpers/args"

0 commit comments

Comments
 (0)