go-ipay is GO client for the iPay.ua Payment Gate API.
go get github.com/stremovskyy/go-ipay
create a new iPay.ua client with default options
client := go_ipay.NewDefaultClient()
Merchant account is a structure that contains all the necessary information for the client to work with the iPay.ua API.
merchant := &go_ipay.Merchant{
Name: private.MerchantName,
MerchantID: private.MerchantID,
MerchantKey: private.MerchantKey,
}
See examples for more examples.
This project is licensed under the MIT License - see the LICENSE file for details
- Anton Stremovskyy - Initial work - stremovskyy
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.
- Add tests
- Add more API methods