mirror of
https://github.com/absmach/magistrala.git
synced 2026-08-07 07:14:46 +00:00
898048cb8b
Signed-off-by: Felix Gateru <felix.gateru@gmail.com>
26 lines
419 B
Go
26 lines
419 B
Go
// Copyright (c) Abstract Machines
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package grpc
|
|
|
|
type authorizeRes struct {
|
|
authorized bool
|
|
}
|
|
|
|
type removeClientConnectionsRes struct{}
|
|
|
|
type unsetParentGroupFromChannelsRes struct{}
|
|
|
|
type channelBasic struct {
|
|
id string
|
|
domain string
|
|
parentGroup string
|
|
status uint8
|
|
}
|
|
|
|
type retrieveEntityRes channelBasic
|
|
|
|
type retrieveIDByRouteRes struct {
|
|
id string
|
|
}
|