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