first commit

This commit is contained in:
2026-04-20 11:56:11 +03:00
commit 8d80fadb56
103 changed files with 19756 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from repositories.standings_repository import replace_standings_for_season
def sync_standings(season: str, standings_rows: list[dict]) -> None:
replace_standings_for_season(
season=season,
standings_rows=standings_rows,
)