11 lines
215 B
Go
11 lines
215 B
Go
|
package reachview
|
||
|
|
||
|
const (
|
||
|
eventRestartRTKLib = "restart rtklib"
|
||
|
)
|
||
|
|
||
|
// RestartRTKLib asks the ReachRS module to restart the RTKlib
|
||
|
func (c *Client) RestartRTKLib() error {
|
||
|
return c.Emit(eventRestartRTKLib, nil)
|
||
|
}
|