From 0d9d4c67cea62ad7ee818322e541c28278410547 Mon Sep 17 00:00:00 2001 From: Alfred Kamanda Date: Wed, 26 Nov 2025 17:53:08 +0300 Subject: [PATCH] added the mpesa address config access --- config/config.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/config.go b/config/config.go index 9e8412e..7898979 100644 --- a/config/config.go +++ b/config/config.go @@ -87,3 +87,7 @@ func DefaultPoolName() string { func DefaultPoolSymbol() string { return env.GetEnv("DEFAULT_POOL_SYMBOL", "") } + +func DefaultMpesaAddress() string { + return env.GetEnv("DEFAULT_MPESA_ADDRESS", "") +}