github.com/wawandco/oxpecker@v1.5.7-0.20210910201653-5958d4afdd89/plugins/pluginreceiver.go (about)

     1  package plugins
     2  
     3  // PluginReceiver is an interface for those plugins that need to
     4  // receive the list of plugins.
     5  type PluginReceiver interface {
     6  	Plugin
     7  
     8  	Receive([]Plugin)
     9  }