1
0
Fork 0
forked from OpenNeo/impress
impress/src/server/outfit-images.js

11 lines
231 B
JavaScript
Raw Normal View History

const fs = require("fs");
const path = require("path");
function renderOutfitImage(layerRefs) {
return fs.readFileSync(
path.join(__dirname, "../app/images/feedback-xwee.png")
);
}
module.exports = { renderOutfitImage };