10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
module.exports = options => {
|
|
if (!options) {
|
|
throw "Options were not provided"
|
|
}
|
|
return {
|
|
sendVerificationEmail: () => Promise.resolve(),
|
|
sendMail: () => Promise.resolve()
|
|
}
|
|
}
|