Files
node-problem-detector/vendor/github.com/hpcloud/tail/ratelimiter/storage.go
2019-08-13 17:34:20 -07:00

7 lines
133 B
Go

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