15 lines
216 B
Go
15 lines
216 B
Go
package messaging
|
|
|
|
import "github.com/tech/sendico/pkg/model"
|
|
|
|
type BrokerBus string
|
|
|
|
const (
|
|
BBInProcess BrokerBus = "in-process"
|
|
BBNats BrokerBus = "NATS"
|
|
)
|
|
|
|
type (
|
|
Config = model.DriverConfig[BrokerBus]
|
|
)
|