1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-05-08 19:29:17 +08:00

12 lines
291 B
Go
Raw Normal View History

package writers
import "github.com/mainflux/mainflux"
// MessageRepository specifies message writing API.
type MessageRepository interface {
// Save method is used to save published message. A non-nil
// error is returned to indicate operation failure.
Save(mainflux.Message) error
}