mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 12:42:34 +02:00
7 lines
128 B
Go
7 lines
128 B
Go
package httpheaders
|
|
|
|
import "net/http"
|
|
|
|
func IsSSE(h http.Header) bool {
|
|
return h.Get("Content-Type") == "text/event-stream"
|
|
}
|