mirror of
https://github.com/netbirdio/netbird.git
synced 2025-08-02 20:49:17 +02:00
10 lines
235 B
Go
10 lines
235 B
Go
package profilemanager
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrProfileNotFound = errors.New("profile not found")
|
|
ErrProfileAlreadyExists = errors.New("profile already exists")
|
|
ErrNoActiveProfile = errors.New("no active profile set")
|
|
)
|