- Added Custom Exams tab showing all exams from Generation page - Displays title, module badges, duration, and status - Added Create Exam button - Kept Exam Sessions tab for institutional sessions - Search filters across exams Made-with: Cursor
12 lines
193 B
JavaScript
12 lines
193 B
JavaScript
let async = require('./async')
|
|
let objectify = require('./objectifier')
|
|
let parse = require('./parser')
|
|
let sync = require('./sync')
|
|
|
|
module.exports = {
|
|
objectify,
|
|
parse,
|
|
async,
|
|
sync
|
|
}
|