mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-25 17:43:38 +01:00
9 lines
151 B
Go
9 lines
151 B
Go
|
package freebsd
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrDoesNotExist = errors.New("does not exist")
|
||
|
ErrNameDoesNotMatch = errors.New("name does not match")
|
||
|
)
|