r2/proxy/lib/stick/index.js
lightings 889465f276 ...
2023-04-13 14:29:58 +08:00

15 lines
270 B
JavaScript

'use strict';
const stick = require('./lib/core');
const msgCenter = require('./lib/msgCenter');
module.exports = {
stick,
msgCenter,
Stick: stick,
MaxBodyLen: {
'32K': 2, // max: 32767 body:16M
'2048M': 4 // max: 2147483647
}
};