-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathmain.go
25 lines (19 loc) · 795 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package main
import (
"context"
"github.com/redpanda-data/benthos/v4/public/service"
// Import full suite of FOSS connect plugins
_ "github.com/redpanda-data/connect/public/bundle/free/v4"
// Or, in order to import both FOSS and enterprise plugins, replace the
// above with:
// _ "github.com/redpanda-data/connect/public/bundle/enterprise/v4"
// Add your plugin packages here
_ "github.com/redpanda-data/redpanda-connect-plugin-example/bloblang"
_ "github.com/redpanda-data/redpanda-connect-plugin-example/cache"
_ "github.com/redpanda-data/redpanda-connect-plugin-example/input"
_ "github.com/redpanda-data/redpanda-connect-plugin-example/output"
_ "github.com/redpanda-data/redpanda-connect-plugin-example/processor"
)
func main() {
service.RunCLI(context.Background())
}