feat(ynab): add new transactions trigger

This commit is contained in:
Rıdvan Akca
2024-01-18 18:08:42 +03:00
parent ab811daba7
commit 0f39007f92
3 changed files with 33 additions and 1 deletions

View File

@@ -1,5 +1,11 @@
import categoryOverspent from './category-overspent/index.js';
import goalCompleted from './goal-completed/index.js';
import lowAccountBalance from './low-account-balance/index.js';
import newTransactions from './new-transactions/index.js';
export default [categoryOverspent, goalCompleted, lowAccountBalance];
export default [
categoryOverspent,
goalCompleted,
lowAccountBalance,
newTransactions,
];