Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 391 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 391 Bytes

Gomerchant

Gomerchant is an abstracted payment interface for Golang, it provides unified API for different payment gateways.

Usage

import "github.com/qor/gomerchant/gateways/stripe"

func main() {
  Stripe := stripe.New(&stripe.Config{
    Key: config.Key,
  })
}

GoDoc