mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-28 19:03:24 +01:00
9 lines
269 B
Go
9 lines
269 B
Go
package common
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrServiceNotFound = errors.New("service not found") // When a service does not exist in the store
|
|
ErrInvalidTimeRange = errors.New("'from' cannot be older than 'to'") // When an invalid time range is provided
|
|
)
|