1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-05-02 22:17:10 +08:00
Mainflux.mainflux/sdk/go/responses.go

21 lines
314 B
Go
Raw Normal View History

//
// Copyright (c) 2018
// Mainflux
//
// SPDX-License-Identifier: Apache-2.0
//
package sdk
type tokenRes struct {
Token string `json:"token,omitempty"`
}
type listThingsRes struct {
Things []Thing `json:"things,omitempty"`
}
type listChannelsRes struct {
Channels []Channel `json:"channels,omitempty"`
}