mirror of
https://github.com/absmach/magistrala.git
synced 2026-06-22 20:00:22 +00:00
243ccade0b
Signed-off-by: Felix Gateru <felix.gateru@gmail.com> Signed-off-by: Arvindh <arvindh91@gmail.com> Signed-off-by: Dusan Borovcanin <borovcanindusan1@gmail.com> Co-authored-by: Arvindh <30824765+arvindh123@users.noreply.github.com> Co-authored-by: Felix Gateru <felix.gateru@gmail.com>
18 lines
443 B
Go
18 lines
443 B
Go
// Copyright (c) Abstract Machines
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package groups
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrInvalidStatus indicates invalid status.
|
|
ErrInvalidStatus = errors.New("invalid groups status")
|
|
|
|
// ErrEnableGroup indicates error in enabling group.
|
|
ErrEnableGroup = errors.New("failed to enable group")
|
|
|
|
// ErrDisableGroup indicates error in disabling group.
|
|
ErrDisableGroup = errors.New("failed to disable group")
|
|
)
|