package client type Options struct { timeoutSec int64 } type Option func(*Options) func WithTimeoutSec(timeoutSec int64) Option { return func(options *Options) { options.timeoutSec = timeoutSec } }