Files
node-problem-detector/vendor/github.com/hpcloud/tail/ratelimiter/storage.go
T
2016-05-17 15:55:59 -07:00

7 lines
133 B
Go

package ratelimiter
type Storage interface {
GetBucketFor(string) (*LeakyBucket, error)
SetBucketFor(string, LeakyBucket) error
}