Add ability to generate config from available plugins

This commit is contained in:
Evan Phoenix
2015-05-18 15:10:11 -07:00
parent b2c5d95737
commit 82cbc4daa2
7 changed files with 195 additions and 23 deletions

View File

@@ -5,6 +5,8 @@ type Accumulator interface {
}
type Plugin interface {
SampleConfig() string
Description() string
Gather(Accumulator) error
}