mirror of
https://github.com/foomo/keel.git
synced 2025-10-16 12:35:34 +00:00
11 lines
157 B
Go
11 lines
157 B
Go
package stream
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/nats-io/nats.go"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
type MsgHandler func(context.Context, *zap.Logger, *nats.Msg) error
|