Create & Init Project...
This commit is contained in:
15
app/admin/main/appstatic/service/push.go
Normal file
15
app/admin/main/appstatic/service/push.go
Normal file
@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user