mirror of
https://github.com/github/codeql.git
synced 2025-12-23 20:26:32 +01: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);
|
|
});
|