Node Clean Architecture – CrmServices Contract
module.exports = class CrmServices { | |
notify(studentDetails) { | |
return new Promise((resolve, reject) => { | |
reject(new Error('not implemented')); | |
}); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment