File tree 2 files changed +16
-2
lines changed
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
- # gomerchant
1
+ # Gomerchant
2
+
3
+ Gomerchant is an abstracted payment interface for Golang, it provides unified API for different payment gateways.
4
+
5
+ ## Usage
6
+
7
+ ``` go
8
+ import " github.com/qor/gomerchant/gateways/stripe"
9
+
10
+ func main () {
11
+ Stripe := stripe.New (&stripe.Config {
12
+ Key: config.Key ,
13
+ })
14
+ }
15
+ ```
2
16
3
17
[ ![ GoDoc] ( https://godoc.org/github.com/golang/gddo?status.svg )] ( http://godoc.org/github.com/qor/gomerchant )
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ type ListCreditCardsResponse struct {
51
51
Params
52
52
}
53
53
54
- // CustomerCard
54
+ // CustomerCreditCard CustomerCard defination
55
55
type CustomerCreditCard struct {
56
56
CustomerID string
57
57
CustomerName string
You can’t perform that action at this time.
0 commit comments