9 lines
180 B
Go
9 lines
180 B
Go
package http
|
|
|
|
import "net/http"
|
|
|
|
type Mux interface {
|
|
Handle(pattern string, handler http.Handler)
|
|
HandleFunc(pattern string, handler func(http.ResponseWriter, *http.Request))
|
|
}
|