aboutsummaryrefslogtreecommitdiff
path: root/streaming.go
diff options
context:
space:
mode:
Diffstat (limited to 'streaming.go')
-rw-r--r--streaming.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming.go b/streaming.go
index 119560a..6ebccf1 100644
--- a/streaming.go
+++ b/streaming.go
@@ -107,7 +107,7 @@ func releaseRequestStream(rs *requestStream) {
}
var requestStreamPool = sync.Pool{
- New: func() interface{} {
+ New: func() any {
return &requestStream{}
},
}