Files
backend-server/server/models/common/headers.go
Josef Fröhle 40d569158f remove dumps and trash
add some new files and services

add hwtools that shows the current and last GWs - not yet included the user stats (if any available)
2020-07-07 19:00:49 +02:00

18 lines
729 B
Go

package common
type Headers struct {
ContentType string `json:"Content-Type"`
XAuthApplicationID string `json:"X-Auth-Application-Id"`
XAuthNetworkIdent string `json:"X-Auth-Network-Ident"`
XAuthPlayerID string `json:"X-Auth-Player-Id"`
XAuthSessionID string `json:"X-Auth-Session-Id"`
XAuthSessionKey string `json:"X-Auth-Session-Key"`
XAuthSignature string `json:"X-Auth-Signature"`
XAuthToken string `json:"X-Auth-Token"`
XAuthUserID string `json:"X-Auth-User-Id"`
XEnvLibraryVersion string `json:"X-Env-Library-Version"`
XRequestID string `json:"X-Request-Id"`
XRequestedWith string `json:"X-Requested-With"`
XServerTime string `json:"X-Server-Time"`
}