mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-15 14:58:08 +02:00
14 lines
268 B
Go
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"`
|
|
}
|