This repository has been archived on 2024-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
|
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}
|
|
}
|