FuncJob is a wrapper that turns a func() into a cron.Job
func()
| 132 | |
| 133 | // FuncJob is a wrapper that turns a func() into a cron.Job |
| 134 | type FuncJob func() |
| 135 | |
| 136 | func (f FuncJob) Run() { f() } |
| 137 |
no outgoing calls
no test coverage detected
searching dependent graphs…