11 lines
204 B
Go
11 lines
204 B
Go
package config
|
|
|
|
type IntegrationConfig struct {
|
|
Plugin PluginConfig `mapstructure:"plugin"`
|
|
}
|
|
|
|
type PluginConfig struct {
|
|
Name string `mapstructure:"name"`
|
|
Version string `mapstructure:"version"`
|
|
}
|