Skip to content

Commit

Permalink
modify package name
Browse files Browse the repository at this point in the history
  • Loading branch information
kai08-cn committed Apr 27, 2021
1 parent 68c0930 commit 3b04047
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"time"

"github.com/gin-gonic/gin"
"github.com/zfs123/go-ac-router/v1/logger"
"github.com/zfs123/go-ac-router/logger"
"go.uber.org/zap"
)

Expand Down
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
module github.com/zfs123/go-ac-router/v1
module github.com/zfs123/go-ac-router

go 1.13

require (
github.com/gin-gonic/gin v1.7.1
github.com/pkg/errors v0.9.1
github.com/urfave/cli v1.22.5
github.com/urfave/cli/v2 v2.3.0
go.uber.org/zap v1.16.0
gopkg.in/natefinch/lumberjack.v2 v2.0.0
Expand Down
1 change: 0 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UV
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw=
github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY=
github.com/urfave/cli v1.22.5/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=
github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI=
go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU=
Expand Down
2 changes: 1 addition & 1 deletion handle/handle.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/gin-gonic/gin"
"github.com/urfave/cli/v2"
"github.com/zfs123/go-ac-router/v1/utils"
"github.com/zfs123/go-ac-router/utils"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions router.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/gin-gonic/gin"
"github.com/urfave/cli/v2"
"github.com/zfs123/go-ac-router/v1/handle"
"github.com/zfs123/go-ac-router/v1/utils"
"github.com/zfs123/go-ac-router/handle"
"github.com/zfs123/go-ac-router/utils"
)

type Router struct {
Expand Down

0 comments on commit 3b04047

Please sign in to comment.