-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcli.js
More file actions
executable file
·49 lines (46 loc) · 1.14 KB
/
cli.js
File metadata and controls
executable file
·49 lines (46 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const { fixPayees, calculateMortgage, ghostfolioSync, wealthfolioSync, bankSync } = require("./engine.js");
let config;
/**
*
* @param {string} command
* @param {object} flags
* @param {string} flags.since
*/
module.exports = async (command) => {
if (!command) {
console.log('Try "actualtasks --help"');
process.exit();
}
if (command === "fix-payees") {
try{
await fixPayees();
} catch (e){
console.error(e);
}
} else if (command === "calculate-mortgage") {
try{
await calculateMortgage();
} catch (e){
console.error(e);
}
} else if (command === "ghostfolio-sync") {
try{
await ghostfolioSync();
} catch (e){
console.error(e);
}
} else if (command === "wealthfolio-sync") {
try{
await wealthfolioSync();
} catch (e){
console.error(e);
}
} else if (command === "bank-sync") {
try{
await bankSync();
} catch (e){
console.error(e);
}
}
process.exit();
};