Files
Authentication/models/constants.go
T
2025-11-25 15:12:31 +08:00

10 lines
221 B
Go

package models
const (
Localhost = "127.0.0.1"
LocalNetwork = "10.0.0.1"
TestEmail = "test@example.com"
SessionID = "session-123"
ErrorMessageFormat = "Expected ID '%s', got '%s'"
)