mirror of
https://github.com/absmach/magistrala.git
synced 2026-06-23 04:10:28 +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>
15 lines
348 B
Go
15 lines
348 B
Go
// Copyright (c) Abstract Machines
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package clients
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrEnableClient indicates error in enabling client.
|
|
ErrEnableClient = errors.New("failed to enable client")
|
|
|
|
// ErrDisableClient indicates error in disabling client.
|
|
ErrDisableClient = errors.New("failed to disable client")
|
|
)
|