2015-12-19 18:28:08 +00:00
|
|
|
package registry
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Options struct {
|
|
|
|
Timeout time.Duration
|
2015-12-31 18:14:40 +00:00
|
|
|
|
|
|
|
// Other options to be used by registry implementations
|
|
|
|
Options map[string]string
|
2015-12-19 18:28:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func Timeout(t time.Duration) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Timeout = t
|
|
|
|
}
|
|
|
|
}
|