itd/api/update.go

13 lines
196 B
Go
Raw Normal View History

2022-04-23 00:12:30 +00:00
package api
2023-01-03 06:30:17 +00:00
import (
"context"
2023-04-21 02:54:58 +00:00
"go.elara.ws/itd/internal/rpc"
2023-01-03 06:30:17 +00:00
)
2022-05-01 22:22:28 +00:00
func (c *Client) WeatherUpdate(ctx context.Context) error {
2023-01-03 06:30:17 +00:00
_, err := c.client.WeatherUpdate(ctx, &rpc.Empty{})
return err
}