Skip to content

Commit eee68e6

Browse files
authored
feat: Add "transformer" plugin type. (#369)
1 parent 9cd0d50 commit eee68e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

managedplugin/plugin.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,11 @@ type PluginType int
6060
const (
6161
PluginSource PluginType = iota
6262
PluginDestination
63+
PluginTransformer
6364
)
6465

6566
func (p PluginType) String() string {
66-
return [...]string{"source", "destination"}[p]
67+
return [...]string{"source", "destination", "transformer"}[p]
6768
}
6869

6970
type Clients []*Client

0 commit comments

Comments
 (0)