crontab.go 484 B

1234567891011121314151617181920212223242526
  1. /*
  2. Copyright © 2024 NAME HERE <EMAIL ADDRESS>
  3. */
  4. package cmd
  5. import (
  6. "fmt"
  7. "gitee.com/xuyiping_admin/pkg/cmd"
  8. "github.com/spf13/cobra"
  9. )
  10. // CrontabCmd represents the crontab command
  11. var CrontabCmd = &cobra.Command{
  12. Use: "crontab",
  13. Short: "计划任务",
  14. Run: func(cmd *cobra.Command, args []string) {
  15. fmt.Println("crontab called")
  16. },
  17. }
  18. func init() {
  19. // 每日同步脚本
  20. cmd.Instant(JobCmd, "db:migrate", taskDBMigrate, "数据库迁移-执行完立刻退出")
  21. }