webhook.go 291 B

123456789101112131415161718192021222324
  1. package controllers
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. func WebhookHead(c *gin.Context) {
  6. }
  7. func WebhookGet(c *gin.Context) {
  8. }
  9. func WebhookPost(c *gin.Context) {
  10. }
  11. func WebhookPut(c *gin.Context) {
  12. }
  13. func WebhookDelete(c *gin.Context) {
  14. }
  15. func WebhookOptions(c *gin.Context) {
  16. }