mirror of https://github.com/Hypfer/Valetudo.git
9 lines
303 B
JavaScript
9 lines
303 B
JavaScript
const fs = require("fs");
|
|
const path = require("path");
|
|
|
|
module.exports = {
|
|
iis: fs.readFileSync(path.join(__dirname, "iis.html")).toString(),
|
|
oracle: fs.readFileSync(path.join(__dirname, "oracle.html")).toString(),
|
|
tomcat: fs.readFileSync(path.join(__dirname, "tomcat.html")).toString()
|
|
};
|