mirror of
https://github.com/qdm12/gluetun.git
synced 2026-07-27 04:46:24 +02:00
9 lines
168 B
Go
9 lines
168 B
Go
package common
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotEnoughServers = errors.New("not enough servers found")
|
|
ErrCredentialsMissing = errors.New("credentials are missing")
|
|
)
|