High level client for golang http2 server push

golang 1.6 was released with support for Http2. I googled online, but could not find any examples of how to make an Http2 server using Go. Is there any high level client for this? Are there any examples that people have already done?

+5
source share
1 answer

The http2 implementation in the std library does not provide http2 specific interfaces, however you can use golang.org/x/net/http2 directly.

https://godoc.org/golang.org/x/net/http2#Framer.WritePushPromise

+1
source

All Articles