Add exports to seasons.js

main
sudoer777 2021-11-20 22:02:20 -07:00
parent 4eadf64fac
commit 5f68b24d8b
1 changed files with 9 additions and 1 deletions

View File

@ -40,4 +40,12 @@ async function retrieveAll() {
seasonsList.push(new Season(row[0], row[1])); seasonsList.push(new Season(row[0], row[1]));
}); });
return seasonsList; return seasonsList;
} }
exports.add = add;
exports.remove = remove;
exports.retrieveAll = retrieveAll;