diff options
author | Valery Piashchynski <[email protected]> | 2021-04-30 16:30:54 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-30 16:30:54 +0300 |
commit | 009b7009885d8a15e6fa6c7e78436087b2f20129 (patch) | |
tree | 6bab1f99aa83c794060ab4c913d5ff62fef6882d /plugins/service/plugin.go | |
parent | 684864530618f4b82399e5f1a89d5967c6ca9bcb (diff) | |
parent | 556477ca9df3fa2e5939057861314eabe5ce30ca (diff) |
#652 feat(informer): list of active plugins in runtime
#652 feat(informer): list of active plugins in runtime
Diffstat (limited to 'plugins/service/plugin.go')
-rw-r--r-- | plugins/service/plugin.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/service/plugin.go b/plugins/service/plugin.go index b5608ff2..28b84443 100644 --- a/plugins/service/plugin.go +++ b/plugins/service/plugin.go @@ -104,3 +104,7 @@ func (service *Plugin) Stop() error { func (service *Plugin) Name() string { return PluginName } + +// Available interface implementation +func (service *Plugin) Available() { +} |