mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 11:39:15 +00:00
13 lines
205 B
JavaScript
13 lines
205 B
JavaScript
class MockDatabase {
|
|
listHistory = []
|
|
|
|
constructor() {}
|
|
|
|
save = (ctx) => {
|
|
console.log('Guardando DB...', ctx)
|
|
this.listHistory.push(ctx)
|
|
}
|
|
}
|
|
|
|
module.exports = MockDatabase
|