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 updater provides an API to communicate with the ReachRS modules "Updater" application
|
|
|
|
package updater
|
|
|
|
|
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 Updater client
|
|
|
|
func NewClient(opts ...emlid.OptionFunc) *Client {
|
2020-11-23 11:15:30 +01:00
|
|
|
client := common.NewClient(opts...)
|
2018-09-21 12:31:52 +02:00
|
|
|
return &Client{client}
|
|
|
|
}
|