Skip to content

Commit

Permalink
Change the package import order
Browse files Browse the repository at this point in the history
The order was changed following the goimports.
  • Loading branch information
faabiosr committed Mar 8, 2020
1 parent c10a733 commit 0f2bb5b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fmt:

# Run linters
lint:
@golangci-linter run ./...
@golangci-lint run ./...
.PHONY: lint

# Run tests
Expand Down
3 changes: 2 additions & 1 deletion memcached.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package cachego

import (
"github.com/bradfitz/gomemcache/memcache"
"time"

"github.com/bradfitz/gomemcache/memcache"
)

type (
Expand Down
3 changes: 2 additions & 1 deletion redis.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package cachego

import (
"gopkg.in/redis.v4"
"time"

"gopkg.in/redis.v4"
)

type (
Expand Down

0 comments on commit 0f2bb5b

Please sign in to comment.