mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-12 10:43:07 +00:00
7 lines
127 B
Go
7 lines
127 B
Go
package middleware
|
|
|
|
import "net/http"
|
|
|
|
// Middleware function definition
|
|
type Middleware func(inner http.Handler) http.Handler
|