mirror of
https://github.com/netbirdio/netbird.git
synced 2025-08-09 07:15:15 +02:00
[client] Feat: Support Multiple Profiles (#3980)
[client] Feat: Support Multiple Profiles (#3980)
This commit is contained in:
9
client/internal/profilemanager/error.go
Normal file
9
client/internal/profilemanager/error.go
Normal file
@ -0,0 +1,9 @@
|
||||
package profilemanager
|
||||
|
||||
import "errors"
|
||||
|
||||
var (
|
||||
ErrProfileNotFound = errors.New("profile not found")
|
||||
ErrProfileAlreadyExists = errors.New("profile already exists")
|
||||
ErrNoActiveProfile = errors.New("no active profile set")
|
||||
)
|
Reference in New Issue
Block a user