mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 11:39:15 +00:00
18 lines
345 B
JavaScript
18 lines
345 B
JavaScript
class MockDatabase {
|
|
listHistory = []
|
|
|
|
constructor() {
|
|
/**
|
|
* Se debe cargar listHistory con historial de mensajes
|
|
* para que se pueda continuar el flow
|
|
*/
|
|
}
|
|
|
|
save = (ctx) => {
|
|
console.log('Guardando DB...', ctx)
|
|
this.listHistory.push(ctx)
|
|
}
|
|
}
|
|
|
|
module.exports = MockDatabase
|