2023-07-01 13:20:11 +02:00
|
|
|
/**
|
|
|
|
handles creation of global hierarchy of folders from config file
|
|
|
|
*/
|
|
|
|
|
2023-07-19 10:04:08 +02:00
|
|
|
import config_rangement from './conf/configs.js'
|
2023-09-10 11:30:50 +02:00
|
|
|
|
2023-07-19 10:04:08 +02:00
|
|
|
let my_conf = new config_rangement({})
|
2023-07-01 13:20:11 +02:00
|
|
|
|
|
|
|
console.log('config', my_conf.version)
|
|
|
|
|
2023-09-10 11:30:50 +02:00
|
|
|
function createFoldersFromConfig () {
|
2023-07-01 13:20:11 +02:00
|
|
|
// TODO
|
|
|
|
}
|