This commit is contained in:
aozhiwei 2024-10-17 11:43:22 +08:00
parent eda59f8c72
commit 97a7af158d

View File

@ -35,6 +35,7 @@ func (this *friend) Force(accountId1 string, accountId2 string, nowTime int64,
}, },
func (err error, lastInsertId int64, rowsAffected int64) { func (err error, lastInsertId int64, rowsAffected int64) {
cb(err, lastInsertId, rowsAffected) cb(err, lastInsertId, rowsAffected)
this.updateAddFriendTask(accountId1, accountId2)
}, },
func (ds *f5.DataSet) bool { func (ds *f5.DataSet) bool {
return true return true
@ -56,3 +57,7 @@ func (this *friend) DeleteSoft(accountId1 string, accountId2 string,
}, },
cb) cb)
} }
func (this *friend) updateAddFriendTask(accountId1 string, accountId2 string) {
}