mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-04 22:17:59 +08:00
10 lines
255 B
Go
10 lines
255 B
Go
![]() |
package http
|
||
|
|
||
|
import "github.com/mainflux/mainflux/writer"
|
||
|
|
||
|
// Service specifies an API that must be fullfiled by the domain service
|
||
|
// implementation, and all of its decorators (e.g. logging & metrics).
|
||
|
type Service interface {
|
||
|
Send([]writer.Message)
|
||
|
}
|