Add ReachView client
This commit is contained in:
parent
ba3d85f48b
commit
ff13693f69
|
@ -0,0 +1,12 @@
|
||||||
|
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}
|
||||||
|
}
|
Reference in New Issue