8 lines
119 B
JavaScript
Raw Normal View History

2023-11-07 14:22:33 +04:00
"use strict";
module.exports = function write(db) {
return (req, res, next) => {
db.write();
next();
};
};