https://github.com/mobilpadde/notifyxf
https://github.com/mobilpadde/notifyxf
go golang notifier-service telegram
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mobilpadde/notifyxf
- Owner: Mobilpadde
- License: mit
- Created: 2021-03-03T18:59:10.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-08T17:52:48.000Z (almost 2 years ago)
- Last Synced: 2024-06-21T18:13:55.315Z (11 months ago)
- Topics: go, golang, notifier-service, telegram
- Language: Go
- Homepage: https://notifyxf.com
- Size: 139 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NotifyXF
[](https://pkg.go.dev/github.com/Mobilpadde/notifyxf)
## What
This is a package to make it easier to use [notifyxf.com](https://notifyxf.com) in projects.
## Usage
If you want to control what notifications you'll get, please use the `notifyxf.Notify`-func.
```go
tkn := "...notifyxf token..."n, err := notifyxf.NewNotifier(os.Getenv("NOTIFYXF_TOKEN"))
if err != nil {
panic(err)
}n.Notify("some message")
```For more information, take a look at the [docs](https://pkg.go.dev/github.com/Mobilpadde/notifyxf).