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
|
|
|
|
// ReachView is a ReachRS Updater client
|
|
type ReachView struct { // nolint: golint
|
|
*client
|
|
}
|
|
|
|
// NewReachViewClient returns a new ReachRS ReachView client
|
|
func NewReachViewClient(opts ...OptionFunc) *ReachView {
|
|
client := newClient(opts...)
|
|
return &ReachView{client}
|
|
}
|