Skip to content

asstroneer/monobank-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

monobank-go

API client for Monobank written in Go.

Basic usage

package main

import (
	"fmt"
	"github.com/asstroneer/monobank-go/pkg/opened"
)

func main() {
	client := opened.NewPublicClient()
	currencies, err := client.GetCurrencies()
	if err != nil {
		panic(err)
	}
	fmt.Println(currencies)
}

More details you can find in examples directory.