orion/reach/reachview.go

13 lines
287 B
Go

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}
}