6 lines
116 B
Go
6 lines
116 B
Go
package adapters
|
|
|
|
import "net/http"
|
|
|
|
// Adapter is an HTTP middleware.
|
|
type Adapter func(http.Handler) http.Handler
|