package domain import "time" const ( DateLayout = "2006-01-02" TimeLayout = "15:04" SecondsPerHour = 3600 SecondsPerDay = 86400 DefaultBreakThreshold = 300 MaxBreakThresholdMins = 480 StreakBonusCap = 500 XPCurveMultiplier = 50 SalaryRoundFactor = 100 MaxHourlyRate = 999999 RateLimitInterval = 1 * time.Second MaxNoteLength = 500 MaxUsernameLength = 64 )