10 lines
160 B
Go
10 lines
160 B
Go
package config
|
|
|
|
type IntegrationConfig struct {
|
|
Plugin PluginConfig `mapstructure:"plugin"`
|
|
}
|
|
|
|
type PluginConfig struct {
|
|
Name string `mapstructure:"name"`
|
|
}
|