简介

因为有存在这种场景,开发人员需要手动触发执行业务逻辑代码,所以提供了脚本模式的支持。

目录

app/console/commands

注册脚本

  1. func RegisterCommand(c *command.Command) {
  2. c.AddFunc("test", test)
  3. }
  4. func test() {
  5. fmt.Println("run test command")
  6. return
  7. }

执行脚本

执行命名为test的脚本任务

  1. build/bin/snow -a command -m test