Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler interface { // PostWebhook handles the post webhook request PostWebhook(c echo.Context) error // ListWebhook handles the list webhook request ListWebhook(c echo.Context) error // GetWebhook handles the get webhook request GetWebhook(c echo.Context) error // DeleteWebhook handles the delete webhook request DeleteWebhook(c echo.Context) error // PutWebhook handles the put webhook request PutWebhook(c echo.Context) error // GetWebhookPing ... GetWebhookPing(c echo.Context) error // GetWebhookLog ... GetWebhookLog(c echo.Context) error // DeleteWebhookLog ... DeleteWebhookLog(c echo.Context) error // ListWebhookLogs ... ListWebhookLogs(c echo.Context) error // GetWebhookLogResend ... GetWebhookLogResend(c echo.Context) error }
Handler is the interface for the webhook handlers
Click to show internal directories.
Click to hide internal directories.