1
This commit is contained in:
parent
ea4a202876
commit
0e67a7d587
15
server/httpproxy/controllers/proxy.js
Normal file
15
server/httpproxy/controllers/proxy.js
Normal 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;
|
Loading…
x
Reference in New Issue
Block a user