Add module exports to divisions.js

main
sudoer777 2021-11-20 21:46:28 -07:00
parent e056743022
commit c2e3c95cfd
1 changed files with 10 additions and 1 deletions

View File

@ -59,3 +59,12 @@ async function retrieveBySportAndGender(sportID, gender) {
});
return divisionsList;
}
exports.create = create;
exports.rename = rename;
exports.remove = remove;
exports.retrieveBySportAndGender = retrieveBySportAndGender;