mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 14:34:26 +00:00
10 lines
215 B
Go
10 lines
215 B
Go
|
package web
|
||
|
|
||
|
import "github.com/gin-gonic/gin"
|
||
|
|
||
|
// Slack is handler function that handles Slack slash commands.
|
||
|
func Slack(c *gin.Context) {
|
||
|
text := c.PostForm("text")
|
||
|
c.String(200, "received message %s", text)
|
||
|
}
|