Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thevxn/sms-manager-go

simple client implementation of SMS Manager HTTP API
https://github.com/thevxn/sms-manager-go

api-client golang sms-manager

Last synced: about 1 month ago
JSON representation

simple client implementation of SMS Manager HTTP API

Awesome Lists containing this project

README

        

# sms-manager-go

[![Go Reference](https://pkg.go.dev/badge/go.vxn.dev/sms-manager.svg)](https://pkg.go.dev/go.vxn.dev/sms-manager)
[![Go Report Card](https://goreportcard.com/badge/go.vxn.dev/sms-manager)](https://goreportcard.com/report/go.vxn.dev/sms-manager)

Simple Go implementation of [SMS Manager HTTP API](https://smsmanager.cz/api/http).

## usage

See [example](/example) folder to see possible client usage.

### in code

```go
package main

import (
"go.vxn.dev/sms-manager/pkg/client"
)

func main() {
// ...
}
```