10 lines
184 B
Go
10 lines
184 B
Go
|
|
package idiohandler
|
||
|
|
|
||
|
|
import "net/http"
|
||
|
|
|
||
|
|
type Handler func(*http.Request) (Responder, error)
|
||
|
|
|
||
|
|
func (h Handler) ServeHttp(w http.ResponseWriter, r *http.Request) {
|
||
|
|
// @todo implement
|
||
|
|
}
|