PluginInstance is a mock plugin instance
| 42 | |
| 43 | // PluginInstance is a mock plugin instance |
| 44 | type PluginInstance struct { |
| 45 | UserCtx compat.UserContext |
| 46 | Enabled bool |
| 47 | DisplayString string |
| 48 | Config *PluginConfig |
| 49 | storageHandler compat.StorageHandler |
| 50 | messageHandler compat.MessageHandler |
| 51 | capabilities compat.Capabilities |
| 52 | BasePath string |
| 53 | } |
| 54 | |
| 55 | // PluginConfig is a mock plugin config struct |
| 56 | type PluginConfig struct { |
nothing calls this directly
no outgoing calls
no test coverage detected