示例#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)
}