11 lines
312 B
Go
11 lines
312 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"
|
|
)
|