/satispay-client

Implementation of Golang Client in order to interact with Satispay using online api

Primary LanguageGoMIT LicenseMIT

Satispay golang client

Build Status GoDoc Go Report Card

This is the implementation of a client library (written in golang) in order to interact with Satispay online API.

Usage

In order to include this client in your project run:

go get github.com/charliemaiors/satispay-client

And use it in your code:

import client "github.com/charliemaiors/satispay-client"

func main(){
        client, err := client.NewClient("your-satispay-token", false)
        valid := client.CheckBearer()
        user, err := client.CreateUser("user-phone-number")
        ...
}