mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
7 lines
146 B
Go
7 lines
146 B
Go
|
package utils
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
// ErrTimeoutReached error thrown when a timeout is reached
|
||
|
var ErrTimeoutReached = errors.New("timeout reached")
|