Add ReachView client

This commit is contained in:
wpetit 2018-09-20 17:24:26 +02:00
parent ba3d85f48b
commit ff13693f69
1 changed files with 12 additions and 0 deletions

12
reach/reachview.go Normal file
View File

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