Files
quic-go/http3/response_writer_closenotifier.go
Marten Seemann 4f6d0e651a implement HTTP/3
2019-04-11 09:06:10 +09:00

10 lines
301 B
Go

package http3
import "net/http"
// The CloseNotifier is a deprecated interface, and staticcheck will report that from Go 1.11.
// By defining it in a separate file, we can exclude this file from staticcheck.
// test that we implement http.CloseNotifier
var _ http.CloseNotifier = &responseWriter{}