mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-28 13:48:49 +08:00
28 lines
378 B
Go
28 lines
378 B
Go
![]() |
// Copyright (c) Mainflux
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package grpc
|
||
|
|
||
|
type identityRes struct {
|
||
|
id string
|
||
|
email string
|
||
|
}
|
||
|
|
||
|
type issueRes struct {
|
||
|
value string
|
||
|
}
|
||
|
|
||
|
type authorizeRes struct {
|
||
|
authorized bool
|
||
|
}
|
||
|
type membersRes struct {
|
||
|
total uint64
|
||
|
offset uint64
|
||
|
limit uint64
|
||
|
groupType string
|
||
|
members []string
|
||
|
}
|
||
|
type emptyRes struct {
|
||
|
err error
|
||
|
}
|