Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PluginConfig ¶
type PluginConfig struct {
// Enabled determines whether the plugin should be loaded and used.
Enabled bool `yaml:"enabled"`
// Path specifies the location of the plugin executable or library.
Path string `yaml:"path"`
// Config contains plugin-specific configuration settings.
// The structure of this map depends on the specific plugin implementation.
Config map[string]any `yaml:"config"`
}
PluginConfig holds configuration for a plugin. It defines the basic settings needed to load and configure a plugin.
Click to show internal directories.
Click to hide internal directories.