mirror of
https://github.com/GrandpaNutz/fafda.git
synced 2026-03-15 23:46:23 +00:00
14 lines
336 B
Go
14 lines
336 B
Go
package internal
|
|
|
|
const (
|
|
HeaderAccept = "Accept"
|
|
HeaderContentType = "Content-Type"
|
|
HeaderContentLength = "Content-Length"
|
|
HeaderAuthorization = "Authorization"
|
|
)
|
|
|
|
const (
|
|
MediaTypeJOSN = "application/json"
|
|
MediaTypeGithubJSON = "application/vnd.github+json"
|
|
MediaTypeOctetStream = "application/octet-stream"
|
|
)
|