mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-08 06:19:23 +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")
|
|
)
|