mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-12 16:30:09 +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")
|
|
)
|