12 lines
244 B
JavaScript
12 lines
244 B
JavaScript
|
/**
|
||
|
handles creation of global hierarchy of folders from config file
|
||
|
*/
|
||
|
|
||
|
import config_rangement from './configs.mjs'
|
||
|
let my_conf = new config_rangement()
|
||
|
|
||
|
console.log('config', my_conf.version)
|
||
|
|
||
|
function createFoldersFromConfig(){
|
||
|
// TODO
|
||
|
}
|