diff options
author | =Corey Hulen <corey@hulen.com> | 2015-06-22 10:41:41 -0800 |
---|---|---|
committer | =Corey Hulen <corey@hulen.com> | 2015-06-22 10:41:41 -0800 |
commit | cecc9c1fa65a8673eb7169b7865b02f7e6947184 (patch) | |
tree | 795df393d13dd291f40a001229e0fa1de94636c5 /utils/lru.go | |
parent | 879750a608fc73f72a16c06d9d3785f4ef0c7ddb (diff) | |
download | chat-cecc9c1fa65a8673eb7169b7865b02f7e6947184.tar.gz chat-cecc9c1fa65a8673eb7169b7865b02f7e6947184.tar.bz2 chat-cecc9c1fa65a8673eb7169b7865b02f7e6947184.zip |
fixing header
Diffstat (limited to 'utils/lru.go')
-rw-r--r-- | utils/lru.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/utils/lru.go b/utils/lru.go index 9e47c3de3..61a515e14 100644 --- a/utils/lru.go +++ b/utils/lru.go @@ -1,5 +1,9 @@ -// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. -// See License.txt for license information. +// This files was copied/modified from https://github.com/hashicorp/golang-lru +// which was (see below) + +// This package provides a simple LRU cache. It is based on the +// LRU implementation in groupcache: +// https://github.com/golang/groupcache/tree/master/lru package utils |