Go implementation of HTTP/2's compression format RFC 7541 for efficiently representing HTTP header fields.
$ go get github.com/while-loop/hpack
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello World")
}
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
hpack is licensed under the Apache 2.0 license. See LICENSE for details.
Anthony Alves