mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
9 lines
155 B
Go
9 lines
155 B
Go
package publicip
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrBadStatusCode = errors.New("bad HTTP status")
|
|
ErrCannotReadBody = errors.New("cannot read response body")
|
|
)
|