This commit is contained in:
aozhiwei 2022-03-15 13:49:44 +08:00
parent ea4a202876
commit 0e67a7d587

View File

@ -0,0 +1,15 @@
const app = require('j7/app');
const serviceFactory = require('../services/factory');
async function get(session) {
}
async function post(session) {
}
function init() {
app.registerHandler('Proxy', 'get', get);
app.registerHandler('Proxy', 'post', post);
}
exports.init = init;