Welcome to mirror list, hosted at ThFree Co, Russian Federation.

handler.go « serving « internal - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0d66ecbf0e221f31d8b8b098d3cde54612e3cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package serving

import "net/http"

// Handler aggregates response/request and lookup path + subpath needed to
// handle a request and response.
type Handler struct {
	Writer     http.ResponseWriter
	Request    *http.Request
	LookupPath *LookupPath
	SubPath    string
}