示例#1
0
func (m *ErrorHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
	m.Call(httpapp.NewEnv(r)).WriteTo(w)
}
示例#2
0
func (m *SimpleLoggingHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
	m.Call(httpapp.NewEnv(r)).WriteTo(w)
}
示例#3
0
func (a *GoogleOAuthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
	a.Call(httpapp.NewEnv(r)).WriteTo(w)
}
示例#4
0
func (c *prefixStripper) ServeHTTP(w http.ResponseWriter, r *http.Request) {
	c.Call(httpapp.NewEnv(r)).WriteTo(w)
}
示例#5
0
func (c *URLMapComponent) ServeHTTP(w http.ResponseWriter, r *http.Request) {
	c.Call(httpapp.NewEnv(r)).WriteTo(w)
}
func (c *ContentController) ServeHTTP(w http.ResponseWriter, r *http.Request) {
	c.Call(httpapp.NewEnv(r)).WriteTo(w)
}