itd/api/update.go

14 lines
168 B
Go
Raw Normal View History

2022-04-22 17:12:30 -07:00
package api
2022-05-01 15:22:28 -07:00
import "context"
func (c *Client) WeatherUpdate(ctx context.Context) error {
return c.client.Call(
2022-05-01 15:22:28 -07:00
ctx,
"ITD",
2022-04-22 17:12:30 -07:00
"WeatherUpdate",
nil,
nil,
)
}