const hit = require('./hit/postpaid'); exports.inquiry = (task) => { hit(task, false); }; exports.pay = (task) => { hit(task, true); };