7 lines
175 B
Go
7 lines
175 B
Go
|
package httpheader
|
||
|
|
||
|
// Accept returns the Accept header used for measuring.
|
||
|
func Accept() string {
|
||
|
return "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
|
||
|
}
|