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

notfoundunless.go « upstream « internal « workhorse - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3bbe3e873a46c88fb22d2f34d8e6241a10c7ae00 (plain)
1
2
3
4
5
6
7
8
9
10
11
package upstream

import "net/http"

func NotFoundUnless(pass bool, handler http.Handler) http.Handler {
	if pass {
		return handler
	}

	return http.HandlerFunc(http.NotFound)
}