diff options
| author | Joey Jiao <joeyjiaojg@gmail.com> | 2021-03-16 16:48:01 +0800 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-03-19 08:06:06 +0100 |
| commit | 2af9d324c1bc7d0486122df201cf67590564ae4c (patch) | |
| tree | 85ae090a0179c182d7357220fe49f5ee221b4114 /vendor/github.com/felixge/httpsnoop/docs.go | |
| parent | 45ca68ec31e01357b475d7d4baa16686952aa57a (diff) | |
syz-manager: compress html using gorilla/hanlders
Issue: #2495
Diffstat (limited to 'vendor/github.com/felixge/httpsnoop/docs.go')
| -rw-r--r-- | vendor/github.com/felixge/httpsnoop/docs.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/felixge/httpsnoop/docs.go b/vendor/github.com/felixge/httpsnoop/docs.go new file mode 100644 index 000000000..203c35b3c --- /dev/null +++ b/vendor/github.com/felixge/httpsnoop/docs.go @@ -0,0 +1,10 @@ +// Package httpsnoop provides an easy way to capture http related metrics (i.e. +// response time, bytes written, and http status code) from your application's +// http.Handlers. +// +// Doing this requires non-trivial wrapping of the http.ResponseWriter +// interface, which is also exposed for users interested in a more low-level +// API. +package httpsnoop + +//go:generate go run codegen/main.go |
