interface.go 505 B

12345678910111213141516171819202122232425262728293031
  1. package crontab
  2. import (
  3. "kpt-pasture/config"
  4. "kpt-pasture/service/asynqsvc"
  5. "kpt-pasture/service/redis"
  6. "kpt-pasture/store/kptstore"
  7. "gitee.com/xuyiping_admin/pkg/di"
  8. "go.uber.org/dig"
  9. )
  10. var Module = di.Options(
  11. di.Provide(NewCrontab),
  12. )
  13. type Entry struct {
  14. dig.In
  15. Cfg *config.AppConfig
  16. DB *kptstore.DB
  17. AsynqClient asynqsvc.Client
  18. Redis *redis.CacheStoreRedisEntry
  19. }
  20. func NewCrontab(entry Entry) Crontab {
  21. return &entry
  22. }
  23. type Crontab interface {
  24. Run() error
  25. }