mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-16 17:21:04 +01:00
10 lines
205 B
Go
10 lines
205 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 true
|
||
|
}
|