rangement/create_folders.mjs
2023-07-19 10:04:08 +02:00

12 lines
250 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
}