cronJobRepository 实现了 CronJobRepository 接口
| 17 | |
| 18 | // cronJobRepository 实现了 CronJobRepository 接口 |
| 19 | type cronJobRepository struct { |
| 20 | dao dao.JobDAO |
| 21 | } |
| 22 | |
| 23 | // NewCronJobRepository 创建并初始化 cronJobRepository 实例 |
| 24 | func NewCronJobRepository(dao dao.JobDAO) CronJobRepository { |
nothing calls this directly
no outgoing calls
no test coverage detected