7 lines
113 B
Plaintext
7 lines
113 B
Plaintext
|
'use strict';
|
||
|
|
||
|
module.exports = function(app, callback) {
|
||
|
process.bootFlags.push('customjs');
|
||
|
callback();
|
||
|
};
|