convert nats and mqtt to a generic pub/sub module type

This commit is contained in:
Joel Wetzell
2026-05-19 21:25:29 -05:00
parent a991b264a6
commit a09249a047
10 changed files with 419 additions and 775 deletions
+4
View File
@@ -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
}