1
0
mirror of https://github.com/netbirdio/netbird.git synced 2025-06-04 00:55:58 +02:00
Zoltan Papp fd67892cb4
[client] Refactor/iface pkg ()
Refactor the flat code structure
2024-10-02 18:24:22 +02:00

9 lines
151 B
Go

package freebsd
import "errors"
var (
ErrDoesNotExist = errors.New("does not exist")
ErrNameDoesNotMatch = errors.New("name does not match")
)