1
0
Fork 0
mirror of https://github.com/Luzifer/duplicity-backup.git synced 2024-11-14 18:02:41 +00:00
duplicity-backup/vendor/github.com/hpcloud/tail/ratelimiter/storage.go

7 lines
133 B
Go
Raw Normal View History

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