uplink/plugins/descriptor.go

13 lines
188 B
Go
Raw Normal View History

2018-04-10 14:34:41 +00:00
package plugins
2018-04-10 15:08:40 +00:00
type Plugin struct {
Descriptor PluginDescriptor
Run PluginRunner
}
2018-04-10 14:34:41 +00:00
type PluginDescriptor struct {
Name string
Version string
Description string
}