Files
automatisch/packages/backend/src/apps/you-need-a-budget/triggers/index.js
2024-01-18 18:08:42 +03:00

12 lines
340 B
JavaScript

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,
newTransactions,
];