2016-02-16 23:43:09 -08:00
|
|
|
module.exports = options => {
|
|
|
|
|
if (!options) {
|
|
|
|
|
throw "Options were not provided"
|
|
|
|
|
}
|
|
|
|
|
return {
|
2016-02-23 21:05:27 -05:00
|
|
|
sendVerificationEmail: () => Promise.resolve(),
|
|
|
|
|
sendMail: () => Promise.resolve()
|
2016-02-16 23:43:09 -08:00
|
|
|
}
|
|
|
|
|
}
|