mirror of
https://github.com/pikami/cosmium.git
synced 2025-09-18 11:05:53 +01:00
21 lines
703 B
Go
21 lines
703 B
Go
package headers
|
|
|
|
const (
|
|
AIM = "A-Im"
|
|
Authorization = "authorization"
|
|
CosmosLsn = "x-ms-cosmos-llsn"
|
|
ETag = "etag"
|
|
GlobalCommittedLsn = "x-ms-global-committed-lsn"
|
|
IfNoneMatch = "if-none-match"
|
|
IsBatchRequest = "x-ms-cosmos-is-batch-request"
|
|
IsQueryPlanRequest = "x-ms-cosmos-is-query-plan-request"
|
|
IsUpsert = "x-ms-documentdb-is-upsert"
|
|
ItemCount = "x-ms-item-count"
|
|
LSN = "lsn"
|
|
XDate = "x-ms-date"
|
|
|
|
// Kinda retarded, but what can I do ¯\_(ツ)_/¯
|
|
IsQuery = "x-ms-documentdb-isquery" // Sent from python sdk and web explorer
|
|
Query = "x-ms-documentdb-query" // Sent from Go sdk
|
|
)
|