@tapd/tplugin-core
v1.46.0
Published
tplugin-core
Downloads
1,008
Readme
TPLUGIN 工具库
Demo
const {EventHandler} = require('@tencent/tplugin-core');
let event = {
'func_type' : 'handler',
'function' : 'hello.index',
'data' : {
'key' : '111'
}
};
new EventHandler(event).exec((err, response)=>{
console.log(err, response);
});