A monorepo for all Slack Manager plugins.
Each plugin is a separate Go module living in its own subdirectory. Modules are versioned independently using the Go multi-module tag convention: tags are prefixed with the plugin name (e.g. sqs/v0.2.0).
| Plugin | Module path | Description |
|---|---|---|
| sqs | github.com/slackmgr/plugins/sqs |
AWS SQS queue consumer and webhook handler |
| dynamodb | github.com/slackmgr/plugins/dynamodb |
AWS DynamoDB storage backend |
| postgres | github.com/slackmgr/plugins/postgres |
PostgreSQL storage backend |
| pubsub | github.com/slackmgr/plugins/pubsub |
Google Cloud Pub/Sub queue consumer and webhook handler |
Each plugin is versioned independently. To install a specific plugin:
go get github.com/slackmgr/plugins/sqs@v0.2.0Or simply get the latest:
go get github.com/slackmgr/plugins/sqsMIT — see LICENSE for details.