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.
2018-09-21 12:31:52 +02:00
|
|
|
package reachview
|
|
|
|
|
2020-11-23 11:15:30 +01:00
|
|
|
import (
|
|
|
|
"forge.cadoles.com/Pyxis/orion/emlid"
|
|
|
|
"forge.cadoles.com/Pyxis/orion/emlid/common"
|
|
|
|
)
|
2018-09-21 12:31:52 +02:00
|
|
|
|
|
|
|
// Client is a ReachRS Updater client
|
|
|
|
type Client struct {
|
2020-11-23 11:15:30 +01:00
|
|
|
*common.Client
|
2018-09-21 12:31:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewClient returns a new ReachRS ReachView client
|
|
|
|
func NewClient(opts ...emlid.OptionFunc) *Client {
|
2020-11-23 11:15:30 +01:00
|
|
|
return &Client{
|
|
|
|
Client: common.NewClient(opts...),
|
|
|
|
}
|
2018-09-21 12:31:52 +02:00
|
|
|
}
|