cloudcmd/server/template.js
2018-03-05 12:54:54 +02:00

8 lines
221 B
JavaScript

'use strict';
const path = require('path');
const readFilesSync = require('@cloudcmd/read-files-sync');
const templatePath = path.join(__dirname, '..', 'tmpl/fs');
module.exports = readFilesSync(templatePath, 'utf8');