// Copyright 2024 Redpanda Data, Inc. // // Licensed as a Redpanda Enterprise file under the Redpanda Community // License (the "License"); you may not use this file except in compliance with // the License. You may obtain a copy of the License at // // https://github.com/redpanda-data/connect/blob/main/licenses/rcl.md // Package all imports all enterprise and FOSS component implementations that // ship with Benthos. This is a convenient way of importing every // single connector at the cost of a larger dependency tree for your // application. package all import ( // Import all community components. _ "github.com/redpanda-data/connect/v4/public/components/community" // Import all enterprise components. _ "github.com/redpanda-data/connect/v4/public/components/aws/enterprise" _ "github.com/redpanda-data/connect/v4/public/components/cohere" _ "github.com/redpanda-data/connect/v4/public/components/gcp/enterprise" _ "github.com/redpanda-data/connect/v4/public/components/kafka/enterprise" _ "github.com/redpanda-data/connect/v4/public/components/ollama" _ "github.com/redpanda-data/connect/v4/public/components/openai" _ "github.com/redpanda-data/connect/v4/public/components/postgresql" _ "github.com/redpanda-data/connect/v4/public/components/snowflake" _ "github.com/redpanda-data/connect/v4/public/components/splunk" )