mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
8 lines
221 B
JavaScript
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');
|
|
|