github.com/TaceyWong/ctools@v0.1.1-0.20201221084458-4d7a8190b2ac/tools/web_resources/iso_country_list.go (about) 1 package web_resources 2 3 import "github.com/urfave/cli/v2" 4 5 var ISOCountryListCMD = cli.Command{ 6 Name: "iso_country_list", 7 Aliases: []string{"icl"}, 8 Usage: "国家列表代码(ISO-3166-1 & ISO-3166-2)", 9 Category: "网页资源", 10 Action: func(c *cli.Context) error { 11 return nil 12 }, 13 }