Blame view
lib/partner-prepaid.js
204 Bytes
8c258ccd9
|
1 2 |
const hitAdvice = require('./hit/prepaid-advice'); const hitTopup = require('./hit/prepaid-topup'); |
d4661aa84
|
3 |
|
385d8ff59
|
4 |
exports.buy = (task) => { |
8c258ccd9
|
5 |
hitTopup(task); |
d4661aa84
|
6 |
}; |
385d8ff59
|
7 |
exports.advice = (task) => { |
8c258ccd9
|
8 |
hitAdvice(task); |
d4661aa84
|
9 |
}; |