1
0
Fork 0
mirror of https://github.com/Luzifer/duplicity-backup.git synced 2024-12-21 02:51:21 +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
}