7 lines
129 B
Go
7 lines
129 B
Go
|
package api
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
// Adapter to encapsulate incoming requests
|
||
|
type Adapter func(http.HandlerFunc) http.HandlerFunc
|