* feat(custom_ruleset): add custom rulesets support * feat(custom-ruleset): add version check * feat(custom-ruleset): add LegacyIO API to get ruleset hashes * feat(pp): add check for rulesets whose pp cannot be calculated * docs(readme): update README to include support for custom rulesets * fix(custom-ruleset): make `rulesets` empty instead of throw a error when version check is disabled Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * chore(custom-ruleset): apply the latest changes of generatorc891bcd159ande25041ad3b* feat(calculator): add fallback performance calculation for unsupported modes * fix(calculator): remove debug print * fix: resolve reviews * feat(calculator): add difficulty calculation checks --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
30 lines
837 B
Python
30 lines
837 B
Python
# ruff: noqa: F401
|
|
|
|
|
|
from . import (
|
|
beatmapset_update,
|
|
database_cleanup,
|
|
recalculate_banned_beatmap,
|
|
recalculate_failed_score,
|
|
)
|
|
from .cache import start_cache_tasks, stop_cache_tasks
|
|
from .calculate_all_user_rank import calculate_user_rank
|
|
from .create_banchobot import create_banchobot
|
|
from .daily_challenge import daily_challenge_job, process_daily_challenge_top
|
|
from .geoip import init_geoip
|
|
from .load_achievements import load_achievements
|
|
from .special_statistics import create_custom_ruleset_statistics, create_rx_statistics
|
|
|
|
__all__ = [
|
|
"calculate_user_rank",
|
|
"create_banchobot",
|
|
"create_custom_ruleset_statistics",
|
|
"create_rx_statistics",
|
|
"daily_challenge_job",
|
|
"init_geoip",
|
|
"load_achievements",
|
|
"process_daily_challenge_top",
|
|
"start_cache_tasks",
|
|
"stop_cache_tasks",
|
|
]
|