2017-12-19 13:16:39 +01:00

14 lines
268 B
Go

package autodiscover
import "github.com/elastic/beats/libbeat/common"
// Config settings for Autodiscover
type Config struct {
Providers []*common.Config `config:"providers"`
}
// ProviderConfig settings
type ProviderConfig struct {
Type string `config:"type"`
}