telegram-bot-manager/modules/utils/globals.go

14 lines
267 B
Go

package utils
import "time"
const (
VerifyCodeLength = 6
TempVerifyCodeExpirationTime = 5 * time.Minute
NotificationIconSuccess = "🟢"
NotificationSymbolInfo = "🔵"
NotificationSymbolWarnung = "🟠"
NotificationSymbolError = "🔴"
)