mirror of
https://github.com/Luzifer/staticmap.git
synced 2024-12-21 05:11:18 +00:00
13 lines
179 B
Go
13 lines
179 B
Go
|
package limiter
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type ExpirableOptions struct {
|
||
|
DefaultExpirationTTL time.Duration
|
||
|
|
||
|
// How frequently expire job triggers
|
||
|
ExpireJobInterval time.Duration
|
||
|
}
|