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