Module Disks
Use HMVC and define module disks

Last updated
Was this helpful?
Use HMVC and define module disks

Last updated
Was this helpful?
Was this helpful?
component {
function configure(){
settings = {
// CBFS Module
cbfs : {
// Disks that will be namespaced with the module name @diskModule
// temp@diskModule
// nasa@diskModule
disks : {
"temp" : { provider : "Ram" },
"nasa" : { provider : "Ram" }
},
// No namespace in global spacing
// temp
// nasa
globalDisks : {
// Should be ignored, you can't override if it exists
"temp" : { provider : "Ram" },
"nasa" : { provider : "Ram" }
}
}
};
}
}