package utils import ( "time" ) const ( VerifyCodeLength = 6 TempVerifyCodeExpirationTime = 5 * time.Minute NotificationIconSuccess = "🟢" NotificationSymbolInfo = "🔵" NotificationSymbolWarnung = "🟠" NotificationSymbolError = "🔴" NotificationTypeSuccess = "1" NotificationTypeInfo = "2" NotificationTypeWarning = "3" NotificationTypeError = "4" NotificationTypeSuccessString = "success" NotificationTypeInfoString = "info" NotificationTypeWarningString = "warning" NotificationTypeErrorString = "error" )