Files
mq-container/vendor/github.com/hpcloud/tail/ratelimiter/storage.go
2017-09-07 13:39:11 +01:00

7 lines
133 B
Go

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