forked from redpanda-data/redpanda-connect-plugin-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
21 lines (16 loc) · 657 Bytes
/
Copy pathmain.go
File metadata and controls
21 lines (16 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package main
import (
"github.com/Jeffail/benthos/v3/lib/serverless/lambda"
// Add your plugin packages here
_ "github.com/benthosdev/benthos-plugin-example/cache"
_ "github.com/benthosdev/benthos-plugin-example/condition"
_ "github.com/benthosdev/benthos-plugin-example/input"
_ "github.com/benthosdev/benthos-plugin-example/manager"
_ "github.com/benthosdev/benthos-plugin-example/output"
_ "github.com/benthosdev/benthos-plugin-example/processor"
)
//------------------------------------------------------------------------------
func main() {
lambda.Run()
}
//------------------------------------------------------------------------------