2021-02-26 00:42:55 +00:00
|
|
|
package updater
|
|
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
|
|
var (
|
2021-03-05 22:45:54 -05:00
|
|
|
ErrHTTPStatusCodeNotOK = errors.New("HTTP status code not OK")
|
|
|
|
|
ErrUnmarshalResponseBody = errors.New("cannot unmarshal response body")
|
|
|
|
|
ErrUpdateServerInformation = errors.New("failed updating server information")
|
2021-02-26 00:42:55 +00:00
|
|
|
)
|