rangement/create_folders.mjs
2023-07-01 13:20:11 +02:00

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
}