mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-21 23:53:14 +01:00
fd67892cb4
Refactor the flat code structure
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")
|
|
)
|