diff --git a/database/scores/games.js b/database/scores/games.js index 94e017c..b990a31 100644 --- a/database/scores/games.js +++ b/database/scores/games.js @@ -57,4 +57,12 @@ async function retrieveByTeamDivisionAndSeason(teamID, divisionID, seasonID) { gamesList.push(new Game(row[0], row[3], teamID, opponentID, teamScore, opponentScore)); }); return gamesList; -} \ No newline at end of file +} + + + + + +exports.add = add; +exports.remove = remove; +exports.retrieveByTeamDivisionAndSeason = retrieveByTeamDivisionAndSeason; \ No newline at end of file