Skip to content

Commit

Permalink
Merge pull request #66 from ikadix/replace_pkg_errors
Browse files Browse the repository at this point in the history
fix: replace and remove pkg/errors
  • Loading branch information
jimeh authored Jun 22, 2022
2 parents 35613d0 + cf9238c commit d4e99cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion caddy/caddy.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package caddy
import (
"context"
"encoding/json"
"errors"
"fmt"
"io"
"os"
Expand All @@ -19,7 +20,6 @@ import (
"github.com/docker/docker/api/types/network"
docker "github.com/docker/docker/client"
"github.com/krystal/guvnor/ready"
"github.com/pkg/errors"
"go.uber.org/zap"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ require (
github.com/golang/mock v1.6.0
github.com/jimeh/go-golden v0.1.0
github.com/olekukonko/tablewriter v0.0.5
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.3.0
github.com/stretchr/testify v1.7.0
go.uber.org/zap v1.21.0
Expand Down Expand Up @@ -92,6 +91,7 @@ require (
github.com/onsi/ginkgo v1.16.4 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_golang v1.12.1 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion service_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package guvnor

import (
"bytes"
"errors"
"fmt"
"os"
"path"
Expand All @@ -10,7 +11,6 @@ import (
"github.com/docker/docker/api/types/mount"
"github.com/go-playground/validator/v10"
"github.com/krystal/guvnor/ready"
"github.com/pkg/errors"
"gopkg.in/yaml.v3"
)

Expand Down

0 comments on commit d4e99cb

Please sign in to comment.