mirror of
https://github.com/github/codeql.git
synced 2026-05-08 23:21:37 +02:00
8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
const app = require("express")(),
|
|
libxml = require("libxmljs");
|
|
|
|
app.post("upload", (req, res) => {
|
|
let xmlSrc = req.body,
|
|
doc = libxml.parseXml(xmlSrc);
|
|
});
|