mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-24 03:05:41 +00:00
9 lines
295 B
JavaScript
9 lines
295 B
JavaScript
import {join, dirname} from 'path';
|
|
import {fileURLToPath} from 'url';
|
|
import readFilesSync from '@cloudcmd/read-files-sync';
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
const templatePath = join(__dirname, '..', 'tmpl/fs');
|
|
|
|
export default readFilesSync(templatePath, 'utf8');
|
|
|