18 lines
384 B
Go
18 lines
384 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])?$`)
|
|
|
|
const Hour = time.Minute * 60
|
|
const Day = Hour * 24
|
|
const Week = Day * 7
|
|
const Year = Day * 365
|
|
const Month = Year / 12
|