mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
12 lines
161 B
JavaScript
12 lines
161 B
JavaScript
class MockDatabase {
|
|
listHistory = []
|
|
|
|
constructor() {}
|
|
|
|
save = (ctx) => {
|
|
this.listHistory.push(ctx)
|
|
}
|
|
}
|
|
|
|
module.exports = MockDatabase
|