feat(recalculate): add scheduled job to recalculate failed scores

This commit is contained in:
MingxuanGame
2025-08-28 16:53:15 +00:00
parent fdb08fe31f
commit 224e890e31
4 changed files with 71 additions and 10 deletions

View File

@@ -2,6 +2,7 @@ from __future__ import annotations
from .daily_challenge import create_daily_challenge_room
from .recalculate_banned_beatmap import recalculate_banned_beatmap
from .recalculate_failed_score import recalculate_failed_score
from .room import create_playlist_room, create_playlist_room_from_api
__all__ = [
@@ -9,4 +10,5 @@ __all__ = [
"create_playlist_room",
"create_playlist_room_from_api",
"recalculate_banned_beatmap",
"recalculate_failed_score",
]