A Go library to integrate YenePay as a Payment method in Go Web Applications.
To add YenePay to your application and start collecting payments, you will first need to register on YenePay as a merchant and get your seller code. You can do that from https://www.yenepay.com/merchant.
Also make sure to enable "sandbox" mode to not incur any charges during developing/testing.
$ go get -u github.com/TibebeJs/yenepay.sdk.go
Alternatively, If you are using go-mod to manage your project, simply add yenepay to your go.mod
file:
module github.com/x/y
go 1.15
require (
"github.com/TibebeJs/yenepay.sdk.go/checkout"
)
And simply import in your source code.
Bugs or suggestions? Visit the issue tracker
Any contribution is highly appreciated (bug fixes, feature implementation, etc..)
Please check this section to [Contribute].
To Be Documented Soon