You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
315 B
15 lines
315 B
package service |
|
|
|
import ( |
|
"context" |
|
|
|
"go-common/library/log" |
|
) |
|
|
|
// add a new resource ID into the to push list |
|
func (s *Service) newPush(ctx context.Context, resID int) (err error) { |
|
if err = s.dao.ZAddPush(ctx, resID); err != nil { |
|
log.Error("NewPush Redis for ResID: %d, Error: %v", resID, err) |
|
} |
|
return |
|
}
|
|
|