mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-29 13:49:28 +08:00

* NOISSUE - Add tests and connection route-map to lora-adapter Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com> * Rename LoraServer -> ChirpStack and fix links Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com> * Remove ctx arg from Publish method Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com> * Fix test Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com> * Revert LoRa Server Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com> * Fix links Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com> * Check ids before to modify connection route-map Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com> * Fix errors Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com> * Log conn errors Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>
20 lines
377 B
Go
20 lines
377 B
Go
// Copyright (c) Mainflux
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package mocks
|
|
|
|
import (
|
|
"github.com/mainflux/mainflux/pkg/messaging"
|
|
)
|
|
|
|
type mockPublisher struct{}
|
|
|
|
// NewPublisher returns mock message publisher.
|
|
func NewPublisher() messaging.Publisher {
|
|
return mockPublisher{}
|
|
}
|
|
|
|
func (pub mockPublisher) Publish(topic string, msg messaging.Message) error {
|
|
return nil
|
|
}
|