11 lines
218 B
Go
11 lines
218 B
Go
package messaging
|
|
|
|
import (
|
|
notifications "github.com/tech/sendico/pkg/messaging/notifications/processor"
|
|
)
|
|
|
|
type Register interface {
|
|
Consumer(processor notifications.EnvelopeProcessor) error
|
|
Producer() Producer
|
|
}
|