Changed import path to mailgun/groupcache

This commit is contained in:
Derrick J. Wippler 2019-04-10 15:09:20 -05:00
parent 1ee6a96d83
commit a4f69dc48c
6 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,5 @@
language: go
go_import_path: github.com/golang/groupcache
go_import_path: github.com/mailgun/groupcache
os: linux
dist: trusty

View File

@ -5,7 +5,7 @@
groupcache is a caching and cache-filling library, intended as a
replacement for memcached in many cases.
For API docs and examples, see http://godoc.org/github.com/golang/groupcache
For API docs and examples, see http://godoc.org/github.com/mailgun/groupcache
## Comparison to memcached

View File

@ -32,9 +32,9 @@ import (
"sync/atomic"
"time"
pb "github.com/golang/groupcache/groupcachepb"
"github.com/golang/groupcache/lru"
"github.com/golang/groupcache/singleflight"
pb "github.com/mailgun/groupcache/groupcachepb"
"github.com/mailgun/groupcache/lru"
"github.com/mailgun/groupcache/singleflight"
)
// A Getter loads data for a key.

View File

@ -31,8 +31,8 @@ import (
"github.com/golang/protobuf/proto"
pb "github.com/golang/groupcache/groupcachepb"
testpb "github.com/golang/groupcache/testpb"
pb "github.com/mailgun/groupcache/groupcachepb"
testpb "github.com/mailgun/groupcache/testpb"
)
var (

View File

@ -25,9 +25,9 @@ import (
"strings"
"sync"
"github.com/golang/groupcache/consistenthash"
pb "github.com/golang/groupcache/groupcachepb"
"github.com/golang/protobuf/proto"
"github.com/mailgun/groupcache/consistenthash"
pb "github.com/mailgun/groupcache/groupcachepb"
)
const defaultBasePath = "/_groupcache/"

View File

@ -19,7 +19,7 @@ limitations under the License.
package groupcache
import (
pb "github.com/golang/groupcache/groupcachepb"
pb "github.com/mailgun/groupcache/groupcachepb"
)
// Context is an opaque value passed through calls to the