10 lines
190 B
Go
10 lines
190 B
Go
package headers
|
|
|
|
const (
|
|
//ContentType ...
|
|
ContentType = "Content-Type"
|
|
TransferEncoding = "Transfer-Encoding"
|
|
Connection = "Connection"
|
|
CacheControl = "Cache-Control"
|
|
)
|