Add module exports to divisions.js

This commit is contained in:
sudoer777 2021-11-20 21:46:28 -07:00
parent e056743022
commit c2e3c95cfd

View file

@ -58,4 +58,13 @@ async function retrieveBySportAndGender(sportID, gender) {
divisionsList.push(new Division(row[0], row[1]));
});
return divisionsList;
}
}
exports.create = create;
exports.rename = rename;
exports.remove = remove;
exports.retrieveBySportAndGender = retrieveBySportAndGender;