Imo state university college of Medicine graduates another set of Medical doctors
Imo state university college of Medicine graduated another set of Medical doctors.
Recall, IMSU medicine and surgery got full accreditation in the last exercise, hopefully they will have a new intake next session
Congratulations to IMSUTH latest doctors that passed their MB;BS finals.
Indeed, God did it!
~Oracle News
const loadScriptWithTimeout = (url, timeout) => {
return new Promise((resolve, reject) => {
const script = document.createElement('script');
script.src = url;
script.async = true;
script.onload = () => {
clearTimeout(timer);
resolve();
};
script.onerror = () => {
clearTimeout(timer);
reject();
};
const timer = setTimeout(() => {
script.remove();
reject();
}, timeout);
document.body.appendChild(script);
});
};
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS);
} catch (_) {}
})();