mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 12:30:11 +02:00
d6659552df
- Split Go files better - Reduce public API for exported errors
12 lines
237 B
Go
12 lines
237 B
Go
package routing
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrLinkByIndex = errors.New("cannot obtain link by index")
|
|
ErrLinkDefaultNotFound = errors.New("default link not found")
|
|
ErrRoutesList = errors.New("cannot list routes")
|
|
)
|