Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/thevxn/sms-manager-go
- Owner: thevxn
- License: mit
- Created: 2023-06-26T12:16:43.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-29T10:14:15.000Z (about 2 months ago)
- Last Synced: 2024-10-31T04:48:05.429Z (about 2 months ago)
- Topics: api-client, golang, sms-manager
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 mainimport (
"go.vxn.dev/sms-manager/pkg/client"
)func main() {
// ...
}
```