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

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

Awesome Lists containing this project

README

          

[![GoDoc](https://godoc.org/github.com/codegoalie/slackhook?status.png)](https://godoc.org/github.com/videofruit/slackhook)
[![Build Status](https://travis-ci.org/codegoalie/slackhook.svg?branch=master)](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!")
```