Add module exports to teams.js

This commit is contained in:
sudoer777 2021-11-20 21:47:15 -07:00
parent c2e3c95cfd
commit 90e302c3ae

View file

@ -50,3 +50,12 @@ async function retrieveBySport(sportID) {
}); });
return teamsList; return teamsList;
} }
exports.create = create;
exports.rename = rename;
exports.remove = remove;
exports.retrieveBySport = retrieveBySport;