diff --git a/reach/reachview.go b/reach/reachview.go new file mode 100644 index 0000000..2e9fa51 --- /dev/null +++ b/reach/reachview.go @@ -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} +}