Add exports to seasons.js

This commit is contained in:
sudoer777 2021-11-20 22:02:20 -07:00
parent 4eadf64fac
commit 5f68b24d8b

View file

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