add some new files and services add hwtools that shows the current and last GWs - not yet included the user stats (if any available)
18 lines
729 B
Go
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"`
|
|
}
|