github.com/go-playground/pkg/v5@v5.29.1/net/http/accept_encodings.go (about)

     1  package httpext
     2  
     3  // Accept-Encoding values
     4  const (
     5  	Gzip     string = "gzip"
     6  	Compress string = "compress"
     7  	Deflate  string = "deflate"
     8  	Br       string = "br"
     9  	Identity string = "identity"
    10  	Any      string = "*"
    11  )