mirror of
https://github.com/go-micro/go-micro.git
synced 2024-11-24 08:02:32 +02:00
d94936f6c9
* v3 * revert plugins * fixup some issues
17 lines
301 B
Go
17 lines
301 B
Go
package micro
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/asim/go-micro/v3/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...)
|
|
}
|