9 lines
140 B
Go
9 lines
140 B
Go
|
package sources
|
||
|
|
||
|
import pubsub "github.com/alash3al/go-pubsub"
|
||
|
|
||
|
type Source interface {
|
||
|
GetSender() *pubsub.Broker
|
||
|
GetTopics() []string
|
||
|
}
|