constants.go
constants.go - Overview
This file defines a set of constant strings and integer used throughout the server application.
Detailed Documentation
Constants
-
EmptyStr
: Represents an empty string.- Type:
string
- Value:
""
- Type:
-
ObjectType
: Represents the string value for the "object" type.- Type:
string
- Value:
"object"
- Type:
-
ArrayType
: Represents the string value for the "array" type.- Type:
string
- Value:
"array"
- Type:
-
StringType
: Represents the string value for the "string" type.- Type:
string
- Value:
"string"
- Type:
-
IntegerType
: Represents the string value for the "integer" type.- Type:
string
- Value:
"integer"
- Type:
-
NumberType
: Represents the string value for the "number" type.- Type:
string
- Value:
"number"
- Type:
-
BooleanType
: Represents the string value for the "boolean" type.- Type:
string
- Value:
"boolean"
- Type:
-
NullType
: Represents the string value for the "null" type.- Type:
string
- Value:
"null"
- Type:
-
UnknownType
: Represents the string value for the "unknown" type.- Type:
string
- Value:
"unknown"
- Type:
-
NumberZeroValue
: Represents the integer zero value.- Type:
int
- Value:
0
- Type:
-
JSONIngest
: Represents the string "JSON.INGEST".- Type:
string
- Value:
"JSON.INGEST"
- Type:
-
GET
: Represents the string "GET".- Type:
string
- Value:
"GET"
- Type:
-
SET
: Represents the string "SET".- Type:
string
- Value:
"SET"
- Type:
-
INCRBY
: Represents the string "INCRBY".- Type:
string
- Value:
"INCRBY"
- Type:
-
OVERFLOW
: Represents the string "OVERFLOW".- Type:
string
- Value:
"OVERFLOW"
- Type:
-
WRAP
: Represents the string "WRAP".- Type:
string
- Value:
"WRAP"
- Type:
-
SAT
: Represents the string "SAT".- Type:
string
- Value:
"SAT"
- Type:
-
FAIL
: Represents the string "FAIL".- Type:
string
- Value:
"FAIL"
- Type:
-
SIGNED
: Represents the string "SIGNED".- Type:
string
- Value:
"SIGNED"
- Type:
-
UNSIGNED
: Represents the string "UNSIGNED".- Type:
string
- Value:
"UNSIGNED"
- Type: