caddy-log-exporter/vendor/github.com/nxadm/tail/ratelimiter/storage.go

7 lines
133 B
Go
Raw Normal View History

2024-09-19 11:21:05 +02:00
package ratelimiter
type Storage interface {
GetBucketFor(string) (*LeakyBucket, error)
SetBucketFor(string, LeakyBucket) error
}