mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
18 lines
562 B
Go
18 lines
562 B
Go
package header
|
|
|
|
// Content-related request and response header names.
|
|
const (
|
|
Accept = "Accept"
|
|
AcceptEncoding = "Accept-Encoding"
|
|
AcceptLanguage = "Accept-Language"
|
|
AcceptRanges = "Accept-Ranges"
|
|
ContentType = "Content-Type"
|
|
ContentDisposition = "Content-Disposition"
|
|
ContentEncoding = "Content-Encoding"
|
|
ContentLanguage = "Content-Language"
|
|
ContentLength = "Content-Length"
|
|
ContentRange = "Content-Range"
|
|
Location = "Location"
|
|
Origin = "Origin"
|
|
Vary = "Vary"
|
|
)
|