itd/cmd/itctl/update.go

8 lines
134 B
Go
Raw Normal View History

package main
import "github.com/urfave/cli/v2"
func updateWeather(c *cli.Context) error {
2022-05-01 22:22:28 +00:00
return client.WeatherUpdate(c.Context)
}