10 lines
173 B
Go
10 lines
173 B
Go
package messaging
|
|
|
|
import (
|
|
"context"
|
|
|
|
me "github.com/tech/sendico/pkg/messaging/envelope"
|
|
)
|
|
|
|
type MessageHandlerT = func(ctx context.Context, envelope me.Envelope) error
|