Files
sendico/api/pkg/messaging/config.go
Stephan D 62a6631b9a
All checks were successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
service backend
2025-11-07 18:35:26 +01:00

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]
)