Files
gluetun/internal/updater/errors.go
2021-03-05 22:45:54 -05:00

10 lines
264 B
Go

package updater
import "errors"
var (
ErrHTTPStatusCodeNotOK = errors.New("HTTP status code not OK")
ErrUnmarshalResponseBody = errors.New("cannot unmarshal response body")
ErrUpdateServerInformation = errors.New("failed updating server information")
)