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