123456789101112131415161718192021222324 |
- package controllers
- import (
- "github.com/gin-gonic/gin"
- )
- func WebhookHead(c *gin.Context) {
- }
- func WebhookGet(c *gin.Context) {
- }
- func WebhookPost(c *gin.Context) {
- }
- func WebhookPut(c *gin.Context) {
- }
- func WebhookDelete(c *gin.Context) {
- }
- func WebhookOptions(c *gin.Context) {
- }
|