forked from Elara6331/itd
12 lines
159 B
Go
12 lines
159 B
Go
|
package api
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
func (c *Client) WeatherUpdate() error {
|
||
|
return c.itdClient.Call(
|
||
|
context.Background(),
|
||
|
"WeatherUpdate",
|
||
|
nil,
|
||
|
nil,
|
||
|
)
|
||
|
}
|