mirror of
https://github.com/go-micro/go-micro.git
synced 2024-11-16 09:58:33 +02:00
17 lines
289 B
Go
17 lines
289 B
Go
package micro
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go-micro.dev/v5/client"
|
|
)
|
|
|
|
type event struct {
|
|
c client.Client
|
|
topic string
|
|
}
|
|
|
|
func (e *event) Publish(ctx context.Context, msg interface{}, opts ...client.PublishOption) error {
|
|
return e.c.Publish(ctx, e.c.NewMessage(e.topic, msg), opts...)
|
|
}
|