itd/api/update.go

12 lines
159 B
Go
Raw Normal View History

2022-04-23 00:12:30 +00:00
package api
import "context"
func (c *Client) WeatherUpdate() error {
return c.itdClient.Call(
context.Background(),
"WeatherUpdate",
nil,
nil,
)
}