resurrect service stuff

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2020-08-28 10:57:42 +03:00
parent aa99378adc
commit 0f19355621
12 changed files with 967 additions and 332 deletions

16
event.go Normal file
View File

@@ -0,0 +1,16 @@
package micro
import (
"context"
"github.com/unistack-org/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...)
}