cloudcmd/server/template.js
2023-07-09 12:43:24 +03:00

7 lines
220 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');