Skip to content

Instantly share code, notes, and snippets.

@royib
Created October 15, 2019 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save royib/44c57aac9dbfeafba50236e4e52bf936 to your computer and use it in GitHub Desktop.
Save royib/44c57aac9dbfeafba50236e4e52bf936 to your computer and use it in GitHub Desktop.
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