status-go/vendor/github.com/nxadm/tail/ratelimiter/storage.go

7 lines
133 B
Go
Raw Normal View History

2022-04-01 16:16:46 +00:00
package ratelimiter
type Storage interface {
GetBucketFor(string) (*LeakyBucket, error)
SetBucketFor(string, LeakyBucket) error
}