sscaas icon indicating copy to clipboard operation
sscaas copied to clipboard

Slack Slash Commands as a Service

Slack Slash Commands as a Service

Website: https://sscaas.eu/

## Example package

package example

import (
    "github.com/danielsamuels/sscaas/sscaas"
)

type Plugin struct {
    Writer http.ResponseWriter
    Request *http.Request
}

func (p Plugin) Run(http.ResponseWriter, *http.Request) (*sscaas.PluginResponse, error) {
    return &sscaas.PluginResponse{
        Username: "Example",
        Emoji: ":smile:",
        Text: "Hello world.",
    }, nil
}