refactor: flatten app/scoreboard/ subpackage and rename files for clarity
All checks were successful
CI / Lint (push) Successful in 5s
CI / Test (push) Successful in 6s
CI / Build & Push (push) Successful in 16s

This commit is contained in:
2026-03-29 10:16:35 -04:00
parent da277e41a4
commit a4dc7dff52
11 changed files with 11 additions and 12 deletions

View File

@@ -4,7 +4,7 @@ from flask import render_template, jsonify
from app import app
from app.config import SCOREBOARD_DATA_FILE
from app.scoreboard.process_data import extract_game_info
from app.games import extract_game_info
@app.route("/")

View File

@@ -3,8 +3,8 @@ import time
import schedule
from app.scoreboard.get_data import store_scoreboard_data
from app.scoreboard.update_nhl_standings_db import update_nhl_standings
from app.api import store_scoreboard_data
from app.standings import update_nhl_standings
logger = logging.getLogger(__name__)