mirror of
https://github.com/github/codeql.git
synced 2026-04-26 09:15:12 +02:00
7 lines
123 B
JavaScript
7 lines
123 B
JavaScript
const express = require('express');
|
|
var app = express();
|
|
|
|
[function (req, res){}].forEach(function(h){
|
|
app.use(h);
|
|
});
|