blob: 262b7cc368285cc84928d7662a75e222e37f5c7e [file] [log] [blame]
Stephane Barbarie4a2564d2018-07-26 11:02:58 -04001package model
2
3import (
4 "fmt"
5 "github.com/opencord/voltha/protos/go/voltha"
6)
7
8type EventBusClient struct {
9}
10
11func NewEventBusClient() *EventBusClient {
12 return &EventBusClient{}
13}
14
15func (ebc *EventBusClient) Publish(topic string, event voltha.ConfigEvent) {
16 fmt.Printf("publishing event:%+v, topic:%s\n", event, topic)
17}