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