1 //go:build go1.20 2 // +build go1.20 3 4 package gzhttp 5 6 // shouldWrite1xxResponses indicates whether the current build supports writes of 1xx status codes. 7 func shouldWrite1xxResponses() bool { 8 return true 9 } 10
View as plain text