test_cron.go 167 B

12345678910111213
  1. package jobs
  2. import "fmt"
  3. type TestJob struct {
  4. Id int
  5. Name string
  6. }
  7. func (this TestJob) Run() {
  8. fmt.Println(this.Id, this.Name)
  9. fmt.Println("testJob1...")
  10. }