Skip to content

Commit

Permalink
feat: Add "transformer" plugin type. (#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
marianogappa authored Jul 29, 2024
1 parent 9cd0d50 commit eee68e6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion managedplugin/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,11 @@ type PluginType int
const (
PluginSource PluginType = iota
PluginDestination
PluginTransformer
)

func (p PluginType) String() string {
return [...]string{"source", "destination"}[p]
return [...]string{"source", "destination", "transformer"}[p]
}

type Clients []*Client
Expand Down

0 comments on commit eee68e6

Please sign in to comment.