From 65e4898775b2fe857338af45225b6af0923ffbb0 Mon Sep 17 00:00:00 2001 From: Shashi Bhushan Rai Date: Sat, 22 Jan 2022 20:05:35 +0530 Subject: [PATCH] . --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 14d5a46..10acb13 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,19 @@ # Bhojpur Pay - Data Processing Engine + The Bhojpur Pay is a software-as-a-service product used as a Payments Data Processing Engine based on Bhojpur.NET Platform for application delivery. + +## 3rd party Gateway Integration + +The Bhojpur Pay also features integration with some third-party payment gateways. There is an abstracted payment interface for software developers. It provides a unified API for different payment gateways. + +### Usage + +```go +import "github.com/bhojpur/pay/pkg/gateway/stripe" + +func main() { + Stripe := stripe.New(&stripe.Config{ + Key: config.Key, + }) +} +```