acha-framework
Version:
is a modular framework on both client (angular.js) and server (node.js) side, it provides security, orm, ioc, obfuscation and ...
14 lines • 467 B
JavaScript
(function (undefined) {
Ioc.define('backend.fileExplorerGenerator', [
'backend.operationResult',
'backend.fileGeneratorEngine'
], function (provide, OperationResult, fileGeneratorEngine) {
provide(function (engine, route, options) {
var generator = fileGeneratorEngine(engine, route, options, {
root: '',
urlPrefix: '/user-files/',
fileHandler: false
}); //Todo: add more functionality here....
});
});
}());