2019-10-07 08:14:47 -06:00
|
|
|
// Copyright (c) Mainflux
|
2018-08-26 13:15:48 +02:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2018-06-19 00:37:04 +02:00
|
|
|
package mainflux
|
|
|
|
|
|
|
|
// File topics.go contains all NATS subjects that are shared between services.
|
|
|
|
|
|
|
|
// OutputSenML represents subject SenML messages will be published to.
|
2019-10-31 14:04:47 +01:00
|
|
|
// Messages published to this topic are Protobuf serialized Messages.
|
2018-06-19 00:37:04 +02:00
|
|
|
const OutputSenML = "out.senml"
|
2019-10-31 14:04:47 +01:00
|
|
|
|
|
|
|
// InputChannels represents subject all messages will be published to.
|
|
|
|
// Messages received on this topic are Protobuf serialized RawMessages.
|
|
|
|
const InputChannels = "channel.>"
|