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

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

import "net/http"

type handler interface {
	Writer() http.ResponseWriter
	Request() *http.Request
	LookupPath() string
	Subpath() string
	HasAccessControl() bool
}