itd/cmd/itctl/update.go

8 lines
125 B
Go
Raw Normal View History

package main
import "github.com/urfave/cli/v2"
func updateWeather(c *cli.Context) error {
2022-04-23 00:12:30 +00:00
return client.WeatherUpdate()
}