You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
802 B
Go
24 lines
802 B
Go
package msg
|
|
|
|
// message keys
|
|
const (
|
|
Success = "common.success"
|
|
Failed = "common.failed"
|
|
UpdateSuccess = "common.updateSuccess"
|
|
UpdateFailed = "common.updateFailed"
|
|
CreateSuccess = "common.createSuccess"
|
|
CreateFailed = "common.createFailed"
|
|
DeleteSuccess = "common.deleteSuccess"
|
|
DeleteFailed = "common.deleteFailed"
|
|
ObjectNotFound = "common.objectNotFound"
|
|
DatabaseError = "common.databaseError"
|
|
CacheError = "common.cacheError"
|
|
ConstraintError = "common.constraintError"
|
|
ValidationError = "common.validationError"
|
|
NotSingularError = "common.notSingularError"
|
|
PermissionDeny = "common.permissionDeny"
|
|
|
|
AlreadyInit = "init.alreadyInit"
|
|
InitRunning = "init.initializeIsRunning"
|
|
)
|