forked from lxh/go-wxhelper
22 lines
456 B
Go
22 lines
456 B
Go
package callback
|
||
|
||
import (
|
||
"gitee.ltd/lxh/logger/log"
|
||
"github.com/gin-gonic/gin"
|
||
"wechat-robot/model/param/callback"
|
||
"wechat-robot/pkg/response"
|
||
)
|
||
|
||
// RobotHookNotify
|
||
// @description: 机器人HOOK后回调
|
||
// @param ctx
|
||
func RobotHookNotify(ctx *gin.Context) {
|
||
var param callback.RobotHook
|
||
if err := ctx.ShouldBind(¶m); err != nil {
|
||
response.New(ctx).SetError(err).Fail()
|
||
return
|
||
}
|
||
|
||
log.Debugf("机器人已启动,Id: %s", param.Robot)
|
||
}
|