refactor: 移除会员过期通知(check_member_expired)

This commit is contained in:
2026-05-26 15:29:52 +08:00
parent 667231520d
commit d20c785d38
2 changed files with 1 additions and 33 deletions

View File

@@ -268,9 +268,8 @@ async fn main() -> std::io::Result<()> {
Err(e) => tracing::warn!("[定时任务] 扫描待支付订单失败: {}", e),
}
// 会员到期提醒
// 会员到期前 7 天提醒
let _ = db::check_member_expiry_soon(&pool_clone).await;
let _ = db::check_member_expired(&pool_clone).await;
}
});