mpesa-rust
mpesa-rust copied to clipboard
Update Mpesa struct to be Shared safely between threads
The current implementation is not Sync
and it will cause errors in a context where it need to be shared between threads in an async context. Hence it cannot get shared across threads without race condition considerations.