charliemaiors / satispay-client

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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")
        ...
}

About

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

License:MIT License


Languages

Language:Go 100.0%