11 lines
331 B
Go
11 lines
331 B
Go
package constants
|
|
|
|
// PostgreSQL specific constants
|
|
const (
|
|
EventStreamSourcePGType = "PostgresLogicalReplication"
|
|
EventStreamSourceSlotPrefix = "fes"
|
|
EventStreamSourceAuthType = "DatabaseAuthenticationSecret"
|
|
EventStreamFlowPgGenericType = "PostgresWalToGenericNakadiEvent"
|
|
EventStreamSinkNakadiType = "Nakadi"
|
|
)
|