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

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

// Project holds a domain / project configuration
type LookupPath struct {
	Location           string
	Path               string
	IsNamespaceProject bool
	IsHTTPSOnly        bool
	HasAccessControl   bool
	ID                 uint64
}