Commit eda51d7caf43c1d2bf38cd04088dd55a1411b9be
1 parent
265c55d0b8
Exists in
master
exports.advice
Showing 1 changed file with 3 additions and 3 deletions Side-by-side Diff
cekstatus.js
... | ... | @@ -11,7 +11,7 @@ var ini = require('ini'); |
11 | 11 | |
12 | 12 | var config; |
13 | 13 | |
14 | -function getTrxStatusFromWebReport(data, _config, callback) { | |
14 | +function advice(data, _config, callback) { | |
15 | 15 | if (_config) { |
16 | 16 | config = _config; |
17 | 17 | } else { |
... | ... | @@ -148,7 +148,7 @@ if (require.main === module) { |
148 | 148 | data.destinaton = argv.destination; |
149 | 149 | } |
150 | 150 | |
151 | - getTrxStatusFromWebReport(data); | |
151 | + advice(data); | |
152 | 152 | } |
153 | 153 | |
154 | -exports.getTrxStatusFromWebReport = getTrxStatusFromWebReport; | |
154 | +exports.advice = advice; |