aboutsummaryrefslogtreecommitdiff
path: root/headers.go
diff options
context:
space:
mode:
Diffstat (limited to 'headers.go')
-rw-r--r--headers.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/headers.go b/headers.go
index 9661ec0..1bc206f 100644
--- a/headers.go
+++ b/headers.go
@@ -46,3 +46,10 @@ func headersFromHTTP(src http.Header) map[string]string {
}
return h
}
+
+type headerInterface interface {
+ Clear(string)
+ Del(string)
+ Get(string) string
+ Set(string, string)
+}