diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2025-01-20 22:50:42 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-01-21 00:15:49 +0100 |
commit | 7375808ececd341d92533bc52c583524d25af792 (patch) | |
tree | ad4bd210f9b877fd817d99c0afe1626c4a2126db /mod/src/main/kotlin/moe/nea/ledger/Ledger.kt | |
parent | 4e20d0e95b2fe6ef71a33f41f9cd8cebd06cf982 (diff) | |
download | LocalTransactionLedger-7375808ececd341d92533bc52c583524d25af792.tar.gz LocalTransactionLedger-7375808ececd341d92533bc52c583524d25af792.tar.bz2 LocalTransactionLedger-7375808ececd341d92533bc52c583524d25af792.zip |
feat: Bank Interest Detection
Diffstat (limited to 'mod/src/main/kotlin/moe/nea/ledger/Ledger.kt')
-rw-r--r-- | mod/src/main/kotlin/moe/nea/ledger/Ledger.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/src/main/kotlin/moe/nea/ledger/Ledger.kt b/mod/src/main/kotlin/moe/nea/ledger/Ledger.kt index 5db4346..06ee9c9 100644 --- a/mod/src/main/kotlin/moe/nea/ledger/Ledger.kt +++ b/mod/src/main/kotlin/moe/nea/ledger/Ledger.kt @@ -16,6 +16,7 @@ import moe.nea.ledger.modules.AccessorySwapperDetection import moe.nea.ledger.modules.AllowanceDetection import moe.nea.ledger.modules.AuctionHouseDetection import moe.nea.ledger.modules.BankDetection +import moe.nea.ledger.modules.BankInterestDetection import moe.nea.ledger.modules.BazaarDetection import moe.nea.ledger.modules.BazaarOrderDetection import moe.nea.ledger.modules.BitsDetection @@ -127,6 +128,7 @@ class Ledger { AllowanceDetection::class.java, AuctionHouseDetection::class.java, BankDetection::class.java, + BankInterestDetection::class.java, BazaarDetection::class.java, BazaarOrderDetection::class.java, BitsDetection::class.java, |