mirror of
https://github.com/github/codeql.git
synced 2026-03-27 09:48:16 +01:00
8 lines
142 B
JavaScript
8 lines
142 B
JavaScript
var express = require('express');
|
|
function attacher (app, server) {
|
|
app.use(function(req, res){});
|
|
}
|
|
|
|
var app = express();
|
|
attacher(app);
|