mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-19 07:01:02 +01:00
10 lines
208 B
Go
10 lines
208 B
Go
//go:build !go1.20
|
|
// +build !go1.20
|
|
|
|
package gzhttp
|
|
|
|
// shouldWrite1xxResponses indicates whether the current build supports writes of 1xx status codes.
|
|
func shouldWrite1xxResponses() bool {
|
|
return false
|
|
}
|