github.com/TaceyWong/ctools@v0.1.1-0.20201221084458-4d7a8190b2ac/tools/web_resources/less_compiler.go (about) 1 package web_resources 2 3 import "github.com/urfave/cli/v2" 4 5 var LessCompilerCMD = cli.Command{ 6 Name: "less_compiler", 7 Aliases: []string{"less_c"}, 8 Usage: "LESS编译为CSS", 9 Category: "网页资源", 10 Action: func(c *cli.Context) error { 11 return nil 12 }, 13 }