backend init

This commit is contained in:
Nikolai Petukhov
2024-09-28 12:51:59 +03:00
parent 876ef28221
commit a3484f4525
7 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
const delay = (ms = 1000) => (req, res, next) => {
setTimeout(next, ms)
}
module.exports = delay