mirror of
https://github.com/github/codeql.git
synced 2026-04-24 16:25:15 +02: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);
|