Files
gluetun/internal/updater/errors.go
2021-02-26 00:42:55 +00:00

9 lines
181 B
Go

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