https://github.com/codegoalie/slackhook
Simple Go client for Slack's Incoming WebHook API
https://github.com/codegoalie/slackhook
Last synced: about 2 months ago
JSON representation
Simple Go client for Slack's Incoming WebHook API
- Host: GitHub
- URL: https://github.com/codegoalie/slackhook
- Owner: codegoalie
- License: apache-2.0
- Fork: true (videofruit/slackhook)
- Created: 2021-05-20T10:09:43.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-04T11:43:54.000Z (almost 4 years ago)
- Last Synced: 2024-06-20T14:17:29.999Z (over 1 year ago)
- Language: Go
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://godoc.org/github.com/videofruit/slackhook)
[](https://travis-ci.org/videofruit/slackhook)
# slackhook
Minimal client for [Slack's](https://slack.com/) [Incoming
WebHooks](https://api.slack.com/incoming-webhooks) API.
## Examples
```go
import "github.com/codegoalie/slackhook"
slackHook := slackhook.New(webhookURL, slackhook.ClientOptions{})
slackHook.Simple("Hello from slackhook!")
```