You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
480 B
Go
34 lines
480 B
Go
4 years ago
|
package internal
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
const (
|
||
|
defaultExpiry = time.Hour * 24 * 7
|
||
|
defaultNotFoundExpiry = time.Minute
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
Options struct {
|
||
|
Expiry time.Duration
|
||
|
NotFoundExpiry time.Duration
|
||
|
}
|
||
|
|
||
|
Option func(o *Options)
|
||
|
)
|
||
|
|
||
|
func newOptions(opts ...Option) Options {
|
||
|
var o Options
|
||
|
for _, opt := range opts {
|
||
|
opt(&o)
|
||
|
}
|
||
|
|
||
|
if o.Expiry <= 0 {
|
||
|
o.Expiry = defaultExpiry
|
||
|
}
|
||
|
if o.NotFoundExpiry <= 0 {
|
||
|
o.NotFoundExpiry = defaultNotFoundExpiry
|
||
|
}
|
||
|
|
||
|
return o
|
||
|
}
|