예제 #1
0
파일: static.go 프로젝트: zalando/skipper
// Serves content from the file system and marks the request served.
func (f *static) Request(ctx filters.FilterContext) {
	serve.ServeHTTP(ctx, f.handler)
}
예제 #2
0
파일: diag.go 프로젝트: zalando/skipper
func (r *random) Request(ctx filters.FilterContext) {
	serve.ServeHTTP(ctx, r)
}