文件名称:webhooks:适用于GitHub,Bitbucket,GitLab,Gogs的Webhook接收器
文件大小:158KB
文件格式:ZIP
更新时间:2024-06-01 04:02:01
github webhooks gitlab bitbucket Go
图书馆网钩 库webhooks允许轻松接收和解析GitHub,Bitbucket和GitLab Webhook事件 特征: 解析整个有效负载,而不仅仅是几个字段。 字段+模式直接与webhook发布的json对齐 笔记: 目前仅接受json负载。 安装 使用go get。 go get -u github.com/go-playground/webhooks/v6 然后将包导入到您自己的代码中。 import "github.com/go-playground/webhooks/v6" 用法和文件 有关详细的使用文档,请参见 。 例子: package main import ( "fmt" "net/http" "github.com/go-playground/webhooks/v6/github" ) const ( path = "/webhooks" ) f