authelia/internal/utils/const.go
Amir Zarrinkafsh 2e784084c7
[MISC] Implement golint recommendations (#885)
Co-authored-by: Clément Michaud <clement.michaud34@gmail.com>
2020-04-20 23:03:38 +02:00

27 lines
669 B
Go

package utils
import (
"errors"
"regexp"
"time"
)
// ErrTimeoutReached error thrown when a timeout is reached.
var ErrTimeoutReached = errors.New("timeout reached")
var parseDurationRegexp = regexp.MustCompile(`^(?P<Duration>[1-9]\d*?)(?P<Unit>[smhdwMy])?$`)
// Hour is an int based representation of the time unit
const Hour = time.Minute * 60
// Day is an int based representation of the time unit
const Day = Hour * 24
// Week is an int based representation of the time unit
const Week = Day * 7
// Year is an int based representation of the time unit
const Year = Day * 365
// Month is an int based representation of the time unit
const Month = Year / 12