cloudcmd/server/template.js

7 lines
225 B
JavaScript

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