10 lines
175 B
Go
Executable File
10 lines
175 B
Go
Executable File
package resolve
|
|
|
|
import "errors"
|
|
|
|
var ErrNotFound = errors.New("not found")
|
|
|
|
var ErrNotImpl = errors.New("not implemented")
|
|
|
|
var ErrCantConnect = errors.New("cannot connect")
|