mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-mockapi.git
synced 2026-08-20 13:04:40 +00:00
8 lines
119 B
JavaScript
8 lines
119 B
JavaScript
"use strict";
|
|
|
|
module.exports = function write(db) {
|
|
return (req, res, next) => {
|
|
db.write();
|
|
next();
|
|
};
|
|
}; |