本站源代码
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Antoine GIRARD 9fe4437bda Use vendored go-swagger (#8087) 5 anos atrás
..
LICENSE Use vendored go-swagger (#8087) 5 anos atrás
README.md Use vendored go-swagger (#8087) 5 anos atrás
canonical.go Use vendored go-swagger (#8087) 5 anos atrás
compress.go Use vendored go-swagger (#8087) 5 anos atrás
cors.go Use vendored go-swagger (#8087) 5 anos atrás
doc.go Use vendored go-swagger (#8087) 5 anos atrás
go.mod Use vendored go-swagger (#8087) 5 anos atrás
handlers.go Use vendored go-swagger (#8087) 5 anos atrás
handlers_go18.go Use vendored go-swagger (#8087) 5 anos atrás
handlers_pre18.go Use vendored go-swagger (#8087) 5 anos atrás
logging.go Use vendored go-swagger (#8087) 5 anos atrás
proxy_headers.go Use vendored go-swagger (#8087) 5 anos atrás
recovery.go Use vendored go-swagger (#8087) 5 anos atrás

README.md

gorilla/handlers

GoDoc CircleCI Sourcegraph

Package handlers is a collection of handlers (aka “HTTP middleware”) for use with Go’s net/http package (or any framework supporting http.Handler), including:

Other handlers are documented on the Gorilla website.

Example

A simple example using handlers.LoggingHandler and handlers.CompressHandler:

import (
    "net/http"
    "github.com/gorilla/handlers"
)

func main() {
    r := http.NewServeMux()

    // Only log requests to our admin dashboard to stdout
    r.Handle("/admin", handlers.LoggingHandler(os.Stdout, http.HandlerFunc(ShowAdminDashboard)))
    r.HandleFunc("/", ShowIndex)

    // Wrap our server with our gzip handler to gzip compress all responses.
    http.ListenAndServe(":8000", handlers.CompressHandler(r))
}

License

BSD licensed. See the included LICENSE file for details.

上海开阖软件有限公司 沪ICP备12045867号-1