-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
32 lines (23 loc) · 970 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
26
27
28
29
30
31
32
package main
import (
"context"
"github.com/redpanda-data/benthos/v4/public/service"
// Import aws for s3 output.
_ "github.com/redpanda-data/connect/v4/public/components/aws"
// Import sql for clickhouse output.
_ "github.com/redpanda-data/connect/v4/public/components/sql"
// Import io for http endpoints.
_ "github.com/redpanda-data/connect/v4/public/components/io"
// Import pure for basic processing.
_ "github.com/redpanda-data/benthos/v4/public/components/pure"
// Import prometheus for metrics.
_ "github.com/redpanda-data/connect/v4/public/components/prometheus"
// Add our custom plugin packages here.
_ "github.com/DIMO-Network/dis/internal/processors/cloudeventconvert"
_ "github.com/DIMO-Network/dis/internal/processors/fingerprintvalidate"
_ "github.com/DIMO-Network/dis/internal/processors/httpinputserver"
_ "github.com/DIMO-Network/dis/internal/processors/signalconvert"
)
func main() {
service.RunCLI(context.Background())
}