예제 #1
0
파일: mux.go 프로젝트: gogolfing/httpcmux
func (m *Mux) Handle(path string, handler Handler, methods ...string) *Route {
	return m.SubRoute(muxpath.EnsureRootSlash(path)).Handle(handler, methods...)
}
예제 #2
0
파일: mux.go 프로젝트: gogolfing/httpcmux
func (m *Mux) SubRoute(path string) *Route {
	return m.trie.SubRoute(muxpath.EnsureRootSlash(path))
}
예제 #3
0
func (s *serveHTTPTest) URL() string {
	return fmt.Sprintf("http://localhost%v", muxpath.EnsureRootSlash(s.path))
}