Added a notice to a comment for Handler() method.
This commit is contained in:
parent
b4163d2162
commit
a23264b00f
1
httpr.go
1
httpr.go
@ -212,6 +212,7 @@ func (rr *Router) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Handler registers a handler for provided pattern for a given HTTP method.
|
// Handler registers a handler for provided pattern for a given HTTP method.
|
||||||
|
// Pattern must start with a slash (/) symbol.
|
||||||
func (rr *Router) Handler(method, pattern string, handler http.HandlerFunc) error {
|
func (rr *Router) Handler(method, pattern string, handler http.HandlerFunc) error {
|
||||||
path, err := newPath(pattern)
|
path, err := newPath(pattern)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user