From ebd6bda60032ad28caabd7abfe3799bb5c1622bc Mon Sep 17 00:00:00 2001 From: "Daniel G. Taylor" Date: Tue, 15 Oct 2024 22:13:45 -0700 Subject: [PATCH] docs: add docs for new interface methods --- api.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api.go b/api.go index a50f3cb1..a49a9314 100644 --- a/api.go +++ b/api.go @@ -67,8 +67,10 @@ type Context interface { // Context returns the underlying request context. Context() context.Context + // TLS / SSL connection information. TLS() *tls.ConnectionState + // Version of the HTTP protocol as text and integers. Version() ProtoVersion // Method returns the HTTP method for the request.