summaryrefslogblamecommitdiff
path: root/plugins/plugin.go
blob: 504c4af0499c6152c6b255413c1fd3a08754df29 (plain) (tree)
1
2
3
4
5
6
7






                                      
package plugins

import "context"

type Plugin interface {
	Run(ctx context.Context) error
}