mail/src/js/app-config.js

23 lines
313 B
JavaScript

define([], function() {
'use strict';
/**
* Create the application namespace
*/
var app = {
util: {}
};
/**
* Global app configurations
*/
app.config = {
cloudUrl: 'https://storage.whiteout.io',
symKeySize: 128,
symIvSize: 128,
asymKeySize: 1024,
workerPath: 'js'
};
return app;
});