mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-09-03 04:08:58 +00:00
convert nats and mqtt to a generic pub/sub module type
This commit is contained in:
@@ -24,3 +24,7 @@ type KeyValueModule interface {
|
||||
type DatabaseModule interface {
|
||||
QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error)
|
||||
}
|
||||
|
||||
type PubSubModule interface {
|
||||
Publish(ctx context.Context, topic string, payload any) error
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user