Merge branch 'master' of git.kingsome.cn:server_common/f5

This commit is contained in:
hujiabin 2023-10-25 15:57:49 +08:00
commit 64cce9a691

View File

@ -97,3 +97,7 @@ func (this *timer) Delete(timerWp *TimerWp) {
func (this *timer) GetRemainTime(timerWp *TimerWp) int64 { func (this *timer) GetRemainTime(timerWp *TimerWp) int64 {
return this.base.GetRemainTime(timerWp.XTimerWp) return this.base.GetRemainTime(timerWp.XTimerWp)
} }
func (this *timer) DeleteRunningTimer() {
this.base.DeleteRunningTimer()
}