13 lines
255 B
Go
13 lines
255 B
Go
package reach
|
|
|
|
// Updater is a ReachRS Updater client
|
|
type Updater struct {
|
|
*client
|
|
}
|
|
|
|
// NewUpdaterClient returns a new ReachRS Updater client
|
|
func NewUpdaterClient(opts ...OptionFunc) *Updater {
|
|
client := newClient(opts...)
|
|
return &Updater{client}
|
|
}
|