GoDoxy/internal/net/gphttp/httpheaders/sse.go
2025-02-15 05:44:47 +08:00

7 lines
128 B
Go

package httpheaders
import "net/http"
func IsSSE(h http.Header) bool {
return h.Get("Content-Type") == "text/event-stream"
}