fafda/internal/http.go
2024-12-19 01:41:46 +05:30

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"
)