diff --git a/server/httpproxy/controllers/proxy.js b/server/httpproxy/controllers/proxy.js new file mode 100644 index 0000000..5933925 --- /dev/null +++ b/server/httpproxy/controllers/proxy.js @@ -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;