14 lines
451 B
Go
14 lines
451 B
Go
package helper
|
|
|
|
const (
|
|
ContentTypeHeader = "Content-Type"
|
|
ApplicationJSON = "application/json"
|
|
ErrorLabel = "error"
|
|
MessageLabel = "message"
|
|
ErrorEncodingResponse = "Error encoding response"
|
|
ErrorFailedtoLogLoginEvent = "Failed to log login event"
|
|
WarningLabel = "WARNING:"
|
|
StateMismatchMessage = "state = %v, want %v"
|
|
ServiceError = "service error"
|
|
)
|