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