From c610f0c9c1ffd11be0269fc4c080825d912f5a9d Mon Sep 17 00:00:00 2001 From: Alfred Kamanda Date: Wed, 26 Nov 2025 18:02:50 +0300 Subject: [PATCH] added the get mpesa symbols --- handlers/local.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/handlers/local.go b/handlers/local.go index 0319a47..0cc1742 100644 --- a/handlers/local.go +++ b/handlers/local.go @@ -140,6 +140,9 @@ func (ls *LocalHandlerService) GetHandler(accountService remote.AccountService) ls.DbRs.AddLocalFunc("transaction_swap_preview", appHandlers.TransactionSwapPreview) ls.DbRs.AddLocalFunc("transaction_initiate_swap", appHandlers.TransactionInitiateSwap) ls.DbRs.AddLocalFunc("clear_trans_type_flag", appHandlers.ClearTransactionTypeFlag) + ls.DbRs.AddLocalFunc("get_mpesa_max_limit", appHandlers.GetMpesaMaxLimit) + ls.DbRs.AddLocalFunc("get_mpesa_preview", appHandlers.GetMpesaPreview) + ls.DbRs.AddLocalFunc("initiate_get_mpesa", appHandlers.InitiateGetMpesa) ls.first = appHandlers.Init