Blame view

lib/partner-postpaid.js 204 Bytes
fd23c5a27   Adhidarma Hadiwinoto   Skeleton postpaid
1
2
3
4
5
6
7
8
9
10
  const hitInquiry = require('./hit/postpaid-inquiry');
  const hitPay = require('./hit/postpaid-pay');
  
  exports.inquiry = (task) => {
      hitInquiry(task);
  };
  
  exports.pay = (task) => {
      hitPay(task);
  };