Files
mq-container/vendor/github.com/hpcloud/tail/ratelimiter/storage.go
2017-09-26 09:32:17 +01:00

7 lines
133 B
Go

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