Skip to content

Instantly share code, notes, and snippets.

@mickelsonm
Created March 30, 2015 13:23
Show Gist options
  • Save mickelsonm/25e60f4aa4fa8080a4ec to your computer and use it in GitHub Desktop.
Save mickelsonm/25e60f4aa4fa8080a4ec to your computer and use it in GitHub Desktop.
simple slack messager implementation
package main
import (
"github.com/curt-labs/GoAdmin/helpers/slack"
)
func main() {
m := slack.Message{
Channel: "general",
Username: "Security Man",
Text: "Broc, thank you for your security awareness.",
}
m.Send()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment