mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
10 lines
228 B
Go
10 lines
228 B
Go
package api
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrTokenNotValid = errors.New("token is not valid")
|
|
ErrTooManyRequests = errors.New("too many requests sent for this month")
|
|
ErrBadHTTPStatus = errors.New("bad HTTP status received")
|
|
)
|