https://github.com/dmnemec/slackbot-go
Framework for creating bots in Slack using Go. Also includes some functions for interacting with the Basecamp 2 API.
https://github.com/dmnemec/slackbot-go
basecamp go golang hacktoberfest slack slackbot
Last synced: 5 months ago
JSON representation
Framework for creating bots in Slack using Go. Also includes some functions for interacting with the Basecamp 2 API.
- Host: GitHub
- URL: https://github.com/dmnemec/slackbot-go
- Owner: dmnemec
- License: mit
- Created: 2017-08-21T18:59:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-10-28T02:31:22.000Z (over 5 years ago)
- Last Synced: 2025-08-14T17:13:16.373Z (10 months ago)
- Topics: basecamp, go, golang, hacktoberfest, slack, slackbot
- Language: Go
- Homepage:
- Size: 106 KB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://goreportcard.com/report/github.com/dmnemec/slackbot-go)
# slackbot-go
A framework in Go for building apps (currently only internal implementations) for Slack.
Package Descriptions
* client - this is the primary thing you need, it contains all the other package clients inside it
* `import "github.com/dmnemec/slackbot-go/slack"`
* `client := slack.NewClient("slack_token_string")`
* `client.AnyWebAPIFunction(Input)` to use the desired WebAPI function
* Functions can be found by looking through the packages. I'll eventually put the full list here (probably)
* core - housekeeping functions for a slackbot
* Configuration file management
* Post messages using Incoming Webhooks
* basecamp - for integration with Basecamp
* Pull events from basecamp
* Perform actions on events
* Pull project names
* converstaions - implementing the Slack Conversations API
* 7/19 Functions