(cache cache.PostCache, l *zap.Logger)
| 23 | } |
| 24 | |
| 25 | func NewRefreshCacheTask(cache cache.PostCache, l *zap.Logger) *RefreshCacheTask { |
| 26 | return &RefreshCacheTask{ |
| 27 | cache: cache, |
| 28 | l: l, |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | type Payload struct { |
| 33 | Key string `json:"key"` |